:root {
    --ink: #142631;
    --muted: #62717c;
    --navy: #102c3c;
    --teal: #007b72;
    --mint: #a5f1d5;
    --line: #e0e8ec;
    --paper: #f5f8fa;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    font-size: 16px;
    line-height: 1.75;
}
a {
    color: inherit;
    text-decoration: none;
}
button, input {
    font: inherit;
}
button, a, input {
    -webkit-tap-highlight-color: transparent;
}
button {
    cursor: pointer;
}
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 3px solid #009d92;
    outline-offset: 4px;
}
img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}
h1, h2, h3, p {
    margin-top: 0;
}
h2 {
    font-size: 27px;
    line-height: 1.4;
    letter-spacing: -.5px;
    margin-bottom: 0;
}
h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 8px;
}
p {
    color: var(--muted);
}
.container {
    width: calc(100% - 48px);
    max-width: 1200px;
    margin: auto;
}
.site-header {
    border-bottom: 1px solid var(--line);
    background: white;
}
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0 18px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}
.brand small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    margin-top: 8px;
    letter-spacing: 1px;
}
.header-pick {
    color: var(--muted);
    margin-left: auto;
    font-size: 14px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 7px;
    border: 1px solid var(--teal);
    background: var(--teal);
    color: white;
    font-weight: 700;
    font-size: 14px;
    min-height: 44px;
}
.button:hover {
    filter: brightness(1.09);
}
.button.small {
    padding: 9px 16px;
}
.button.ghost {
    color: var(--teal);
    background: transparent;
    border-color: #8fafb2;
}
.nav {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
.nav a {
    white-space: nowrap;
    padding: 11px 7px 14px;
    font-size: 14px;
    border-bottom: 3px solid transparent;
}
.nav a span {
    margin-right: 4px;
    font-size: 18px;
}
.nav a[aria-current] {
    color: var(--teal);
    border-color: var(--teal);
    font-weight: 700;
}
.hero {
    margin: 30px 0 55px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    min-height: 360px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--navy);
    color: white;
}
.hero-copy {
    padding: 34px;
    align-self: center;
}
.eyebrow {
    display: block;
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.hero .eyebrow {
    color: var(--mint);
}
.hero h1 {
    font-size: 39px;
    line-height: 1.2;
    margin-bottom: 15px;
}
.hero p {
    color: #c5d5dd;
    font-size: 14px;
    margin-bottom: 20px;
}
.hero .hero-tagline {
    color: white;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 12px;
}
.actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.hero .button {
    background: var(--mint);
    border-color: var(--mint);
    color: var(--navy);
}
.hero .button.ghost {
    background: transparent;
    color: white;
    border-color: #63808e;
}
.hero-note {
    font-size: 12px;
    color: #a8bfc9;
    margin-top: 26px;
}
.hero-feature {
    position: relative;
    min-width: 0;
    min-height: 360px;
    background: #214b5c;
}
.cover {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #d4e1e6;
    border-radius: 9px;
}
.cover img {
    width: 100%;
    height: 100%;
    transition: transform .3s;
}
a:hover .cover img {
    transform: scale(1.035);
}
.cover::after {
    content: "";
    position: absolute;
    inset: 55% 0 0;
    background: linear-gradient(transparent, #071a2b80);
}
.play-icon {
    position: absolute;
    left: 14px;
    bottom: 12px;
    z-index: 1;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid #ffffff9e;
    border-radius: 50%;
    background: #102c3c65;
    color: white;
    font-size: 12px;
}
.duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 1;
    padding: 1px 7px;
    background: #112630c4;
    color: white;
    border-radius: 4px;
    font-size: 12px;
}
.hero-feature .cover {
    height: 100%;
    border-radius: 0;
    aspect-ratio: auto;
}
.hero-feature .cover::after {
    inset: 0;
    background: linear-gradient(0deg, #071c30ef, transparent 80%);
}
.hero-feature .play-icon {
    top: 32%;
    left: 47%;
    width: 48px;
    height: 48px;
    font-size: 20px;
}
.hero-feature .duration {
    top: 22px;
    bottom: auto;
    right: 22px;
}
.hero-overlay {
    position: absolute;
    bottom: 28px;
    left: 32px;
    right: 25px;
    z-index: 2;
}
.hero-overlay h2 {
    font-size: 30px;
    margin: 9px 0;
}
.hero-overlay p {
    margin: 0 0 9px;
}
.hero-overlay > span:last-child {
    font-size: 14px;
    color: var(--mint);
}
.pill {
    display: inline-block;
    background: #ffffff22;
    border: 1px solid #ffffff44;
    border-radius: 4px;
    font-size: 12px;
    padding: 3px 9px;
}
.section {
    margin: 0 0 58px;
}
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 24px;
}
.section-heading h2 > span {
    color: var(--teal);
    font-weight: 400;
}
.text-link {
    font-size: 14px;
    color: var(--teal);
    font-weight: 700;
}
.grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 22px;
}
.card {
    min-width: 0;
}
.card-copy {
    padding-top: 13px;
}
.card-copy h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 54px;
}
.card-copy p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 49px;
    margin-bottom: 9px;
}
.card-copy .eyebrow {
    font-size: 12px;
    margin-bottom: 5px;
}
.meta {
    color: var(--muted);
    font-size: 12px;
}
.categories {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
}
.category {
    position: relative;
    padding: 20px;
    border-radius: 9px;
    background: #f0f6f8;
    border: 1px solid #e4edf0;
}
.category:nth-child(2n) {
    background: #f1f6f2;
}
.category:nth-child(3n) {
    background: #f5f3fa;
}
.category-icon {
    display: block;
    color: var(--teal);
    font-size: 29px;
    margin-bottom: 8px;
}
.category p {
    font-size: 13px;
    margin-bottom: 12px;
}
.category > span:last-child {
    font-size: 12px;
    color: var(--teal);
}
.timeline {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 0 35px;
}
.timeline > a {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    min-width: 0;
    align-items: start;
}
.timeline time {
    color: var(--teal);
    background: #eaf7f3;
    padding: 4px 7px;
    font-size: 12px;
    border-radius: 5px;
}
.timeline > a > div {
    flex: 1;
    min-width: 0;
}
.timeline h3 {
    font-size: 16px;
}
.timeline p {
    font-size: 13px;
    margin: 0;
}
.timeline > a > div > span {
    font-size: 12px;
    color: var(--muted);
}
.timeline-duration {
    font-size: 12px;
    white-space: nowrap;
}
.tinted {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px;
}
.split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.split-feature > a h3 {
    margin-top: 13px;
}
.split-feature p {
    font-size: 14px;
    margin-bottom: 0;
}
.rank-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.rank-list li {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.rank-num {
    font-size: 27px;
    font-weight: 800;
    color: var(--teal);
    font-style: italic;
}
.rank-list a {
    flex: 1;
    min-width: 0;
}
.rank-list strong {
    font-size: 15px;
    display: block;
}
.rank-list a span {
    font-size: 12px;
    color: var(--muted);
    display: block;
    margin-top: 4px;
}
.heat {
    font-size: 12px;
    color: #946121;
    white-space: nowrap;
}
.short-grid {
    display: grid;
    grid-template-columns: repeat(6,minmax(0,1fr));
    gap: 17px;
}
.short-grid .cover {
    aspect-ratio: 3 / 4;
    max-height: 242px;
}
.short-grid .card-copy p {
    display: none;
}
.short-grid h3 {
    font-size: 16px;
}
.short-grid .meta {
    font-size: 12px;
}
.anime-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 26px;
}
.anime-intro {
    background: #102e45;
    padding: 27px;
    color: white;
    border-radius: 10px;
}
.anime-intro > span {
    color: var(--mint);
    font-size: 40px;
}
.anime-intro h3 {
    font-size: 26px;
    margin: 12px 0;
}
.anime-intro p {
    color: #bfd1dc;
    font-size: 14px;
}
.anime-intro .button {
    background: var(--mint);
    color: var(--navy);
}
.anime-layout .grid {
    gap: 16px;
}
.anime-layout .card-copy p {
    display: none;
}
.anime-layout .cover {
    aspect-ratio: 3 / 4;
}
.documentary-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 25px;
}
.documentary-grid > a {
    display: grid;
    grid-template-columns: 43% 1fr;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
}
.documentary-grid p {
    font-size: 13px;
    margin: 0;
}
.topics {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 26px;
}
.topics article {
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    padding: 0 20px 20px;
}
.topics .cover {
    margin: 0 -20px 20px;
    border-radius: 0;
}
.topics p {
    font-size: 14px;
}
.ranking-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-top: 2px solid var(--ink);
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tags a {
    padding: 9px 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 30px;
    font-size: 14px;
}
.about {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 35px;
    align-items: center;
    background: var(--paper);
    border-radius: 12px;
    padding: 32px;
}
.brand-monogram, .subscribe-brand {
    display: grid;
    place-content: center;
    position: relative;
    width: 120px;
    height: 120px;
    background: var(--navy);
    color: var(--mint);
    font-size: 70px;
    font-weight: 800;
    border-radius: 24px;
}
.brand-monogram span, .subscribe-brand span {
    font-size: 18px;
    position: absolute;
    bottom: 12px;
    right: 15px;
}
.about p {
    font-size: 14px;
    margin: 12px 0 0;
}
.subscribe {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #e2f5ed;
    border: 1px solid #c3e7d9;
    padding: 36px 42px;
    border-radius: 12px;
}
.subscribe-brand {
    flex-shrink: 0;
}
.subscribe h2 {
    margin-bottom: 10px;
}
.subscribe p {
    font-size: 14px;
    max-width: 720px;
}
.subscribe-note {
    font-size: 12px;
    color: var(--muted);
    margin-left: 14px;
}
.footer {
    background: #102b3a;
    color: #dae7ed;
    padding: 40px 0;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}
.footer p, .footer small {
    color: #afc3ce;
    font-size: 12px;
    margin: 16px 0 8px;
}
.footer nav {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-content: center;
    gap: 18px 30px;
    font-size: 14px;
}
.back-top {
    position: fixed;
    right: 15px;
    bottom: 20px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--teal);
    color: white;
    z-index: 8;
    box-shadow: 0 3px 14px #102b3a30;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    margin: 28px 0;
}
.category-hero {
    display: flex;
    align-items: center;
    gap: 28px;
    border-left: 4px solid var(--teal);
    background: var(--paper);
    padding: 28px;
    margin-bottom: 44px;
}
.category-hero .category-icon {
    font-size: 52px;
}
.category-hero h1, .detail-heading h1 {
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 10px;
}
.category-hero p {
    max-width: 850px;
    margin: 0;
}
.category-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.category-feature h2 {
    margin-bottom: 15px;
}
.category-feature p {
    font-size: 15px;
}
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 30px;
}
.detail-heading p {
    font-size: 13px;
}
.player {
    background: #071922;
    border-radius: 12px;
    overflow: hidden;
    color: white;
    max-width: 960px;
    margin: 25px auto 0;
}
.player-stage {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}
.player-stage img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}
.player-stage img.active {
    display: block;
}
.central-play {
    position: absolute;
    top: 42%;
    left: calc(50% - 32px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #ffffffaa;
    background: #082f3db0;
    color: white;
    font-size: 25px;
}
.player-label {
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: 13px;
    background: #102c3ccc;
    padding: 4px 12px;
    border-radius: 5px;
}
.player-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 22px;
    color: white;
    background: linear-gradient(transparent,#061923d9);
}
.player-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
}
.player-controls button {
    color: white;
    border: 0;
    background: #214252;
    border-radius: 4px;
    min-width: 40px;
    min-height: 40px;
}
.player-controls input {
    accent-color: #a5f1d5;
    min-width: 0;
}
[data-progress] {
    flex: 1;
    width: 100%;
}
[data-time] {
    font-size: 12px;
    white-space: nowrap;
}
.volume {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    white-space: nowrap;
}
.volume input {
    width: 65px;
}
.player-status {
    color: #bcced8;
    font-size: 12px;
    padding: 0 16px 12px;
    margin: 0;
}
.detail-actions {
    margin: 24px 0 45px;
}
.reading {
    max-width: 900px;
}
.reading p {
    font-size: 16px;
    line-height: 1.95;
}
.reading h3 {
    margin-top: 24px;
}
.scene-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 25px;
}
figure {
    margin: 0;
}
.scene-grid img {
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 8px;
}
figcaption {
    padding-top: 12px;
}
figcaption > span {
    color: var(--teal);
    margin-right: 9px;
}
figcaption strong {
    font-size: 15px;
}
figcaption p {
    font-size: 13px;
    margin-top: 8px;
}
.highlights {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 30px;
}
.highlights > div {
    border-top: 2px solid var(--teal);
    padding-top: 15px;
}
.highlights span {
    color: var(--teal);
    font-size: 12px;
}
.highlights h3 {
    margin: 10px 0;
}
.highlights p {
    font-size: 14px;
}
.prev-next {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    margin: 0 0 45px;
    font-size: 14px;
    color: var(--teal);
}
.legal {
    margin-bottom: 60px;
}
.legal h2 {
    margin: 28px 0 12px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
@media (prefers-reduced-motion: reduce) {
    html {
    scroll-behavior: auto;
}
    * {
    transition: none !important;
}
}
