:root {
    --ink: #10231f;
    --muted: #61716c;
    --paper: #f6f8f4;
    --card: #ffffff;
    --line: #dfe8e3;
    --lime: #c9ff4a;
    --green: #174b3f;
    --coral: #ff735d;
    --shadow: 0 18px 55px rgba(18, 49, 42, 0.11);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    width: 100%;
}
button {
    font: inherit;
}
.shell {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 248, 244, .92);
    border-bottom: 1px solid rgba(16, 35, 31, .08);
    backdrop-filter: blur(16px);
}
.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 26px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}
.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--lime);
    color: var(--green);
    transform: rotate(-5deg);
    box-shadow: 4px 4px 0 var(--green);
}
.brand-copy {
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.5px;
}
.brand-copy small {
    display: block;
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--muted);
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    margin-left: auto;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 9px;
    border-radius: 10px;
    font-size: 14px;
    white-space: nowrap;
}
.nav-link span {
    color: var(--coral);
    font-weight: 800;
}
.nav-link:hover, .nav-link.active {
    background: var(--ink);
    color: #fff;
}
.nav-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
}
.hero {
    margin-top: 30px;
    min-height: 570px;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 44px;
    align-items: center;
    padding: 56px;
    border-radius: 32px;
    background: var(--green);
    color: #fff;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border: 90px solid rgba(201,255,74,.08);
    border-radius: 50%;
    left: -250px;
    bottom: -230px;
}
.hero-copy {
    position: relative;
    z-index: 1;
}
.hero-kicker, .section-label {
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}
.hero h1 {
    margin: 16px 0;
    font-size: clamp(58px, 7vw, 92px);
    line-height: .92;
    letter-spacing: -5px;
}
.hero p {
    color: #d9e8e2;
    font-size: 18px;
    line-height: 1.9;
}
.hero-actions {
    display: flex;
    gap: 12px;
    margin: 30px 0;
}
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
}
.button.primary {
    background: var(--lime);
    color: var(--green);
    box-shadow: 0 9px 28px rgba(201,255,74,.23);
}
.button.ghost {
    border-color: var(--line);
    background: #fff;
    color: var(--ink);
}
.button.dark {
    background: var(--ink);
    color: #fff;
}
.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hero-facts span {
    padding: 7px 10px;
    border-radius: 99px;
    background: rgba(255,255,255,.1);
    font-size: 12px;
}
.hero-visual {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,.3);
    transform: rotate(1.5deg);
}
.hero-visual img, .cover img, .player-shell > img {
    height: 100%;
    object-fit: cover;
}
.hero-visual::after, .cover::after, .player-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.76));
    pointer-events: none;
}
.hero-number {
    position: absolute;
    top: 18px;
    left: 20px;
    z-index: 2;
    font-size: 70px;
    font-weight: 900;
    color: rgba(255,255,255,.55);
}
.hero-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
    display: grid;
    gap: 8px;
}
.hero-caption b {
    font-size: 24px;
}
.hero-caption small {
    color: #dceae5;
}
.play-badge {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    padding-left: 3px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--green);
    box-shadow: 0 8px 30px rgba(0,0,0,.25);
    transition: .25s;
}
.cover:hover .play-badge, .hero-visual:hover .play-badge {
    transform: translate(-50%, -50%) scale(1.1);
}
.section {
    margin-top: 92px;
}
.section-heading {
    margin-bottom: 28px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}
.section-heading span {
    display: block;
    margin-bottom: 7px;
    color: var(--coral);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}
.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -2px;
}
.section-heading > a {
    font-weight: 800;
    color: var(--green);
}
.feature-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .75fr;
    gap: 20px;
}
.video-card {
    min-width: 0;
    border-radius: 20px;
    background: var(--card);
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(18,49,42,.07);
}
.video-card.featured {
    grid-row: span 2;
}
.cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.video-card.featured .cover {
    aspect-ratio: 4 / 3;
}
.duration {
    position: absolute;
    right: 10px;
    bottom: 9px;
    z-index: 3;
    padding: 4px 7px;
    border-radius: 6px;
    background: rgba(10,20,17,.82);
    color: #fff;
    font-size: 11px;
}
.card-body {
    padding: 16px;
}
.eyebrow, .meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 11px;
}
.eyebrow span, .tag {
    color: var(--coral);
    font-weight: 900;
}
.card-body h3 {
    margin: 10px 0;
    font-size: 17px;
    line-height: 1.45;
}
.card-body p {
    display: -webkit-box;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.update-band {
    padding: 72px 0;
    background: #e7eee9;
}
.update-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #bdcbc4;
}
.update-rail a {
    min-width: 0;
    padding: 18px 10px;
    display: grid;
    grid-template-columns: 52px 48px 1fr auto;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #bdcbc4;
}
.update-rail time {
    font-weight: 900;
}
.update-rail span {
    color: var(--coral);
    font-size: 12px;
}
.update-rail b {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.update-rail em {
    font-size: 12px;
    font-style: normal;
}
.poster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.video-card.poster .cover {
    aspect-ratio: 3 / 4;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.category-tile {
    min-height: 210px;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: #fff;
    transition: .25s;
}
.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.category-tile i {
    float: right;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--ink);
    color: var(--lime);
    font-size: 24px;
    font-style: normal;
}
.category-tile strong {
    display: block;
    font-size: 24px;
}
.category-tile > span {
    color: var(--coral);
    font-size: 12px;
    font-weight: 900;
}
.category-tile p {
    clear: both;
    padding-top: 20px;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}
.split-showcase {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 50px;
    align-items: center;
    padding: 50px;
    border-radius: 28px;
    background: #182521;
    color: #fff;
}
.split-showcase h2 {
    font-size: 42px;
    margin: 12px 0;
}
.split-showcase p {
    color: #bcd0c8;
    line-height: 1.8;
}
.text-link {
    color: var(--lime);
    font-weight: 800;
}
.mini-list a {
    display: grid;
    grid-template-columns: 36px 100px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}
.mini-list img {
    height: 62px;
    object-fit: cover;
    border-radius: 9px;
}
.mini-list small {
    color: #a9bbb4;
}
.anime-zone {
    padding: 80px 0;
    background: #fff0dc;
}
.anime-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.anime-cards a {
    position: relative;
    padding: 12px 12px 20px;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: #fff;
    box-shadow: 6px 6px 0 var(--ink);
}
.anime-cards img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
}
.anime-cards > a > span {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 4px 7px;
    border-radius: 5px;
    background: var(--ink);
    color: #fff;
    font-size: 11px;
}
.anime-cards h3 {
    margin-bottom: 7px;
}
.anime-cards p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}
.classic-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    border-radius: 28px;
    overflow: hidden;
    background: #d9ff80;
}
.classic-lead {
    padding: 50px;
}
.classic-lead h2 {
    font-size: 43px;
    margin: 12px 0;
}
.classic-lead p {
    line-height: 1.8;
}
.classic-list {
    padding: 28px;
    background: var(--green);
    color: #fff;
}
.classic-list a {
    display: grid;
    grid-template-columns: 45px 1fr 30px;
    gap: 10px;
    align-items: center;
    padding: 18px 5px;
    border-bottom: 1px solid rgba(255,255,255,.14);
}
.classic-list > a > b {
    font-size: 22px;
    color: var(--lime);
}
.classic-list span {
    font-weight: 800;
}
.classic-list small {
    display: block;
    color: #9fb8ae;
    margin-top: 5px;
    font-weight: 400;
}
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.timeline article {
    padding: 24px;
    border-left: 3px solid var(--coral);
    background: #fff;
}
.timeline time {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 2px;
}
.timeline time b {
    color: var(--ink);
    font-size: 36px;
    letter-spacing: 0;
}
.timeline span {
    color: var(--coral);
    font-size: 12px;
    font-weight: 900;
}
.timeline h3 {
    line-height: 1.5;
}
.timeline p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}
.rank-section {
    padding: 82px 0;
    background: var(--ink);
    color: #fff;
}
.rank-layout {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 70px;
}
.rank-intro {
    color: #9eb2aa;
    line-height: 1.8;
}
.ranking {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ranking li {
    display: grid;
    grid-template-columns: 48px 1fr 70px;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
}
.ranking > li > span {
    color: var(--lime);
    font-size: 20px;
    font-weight: 900;
}
.ranking small {
    display: block;
    color: #92a79f;
    margin-top: 4px;
}
.ranking em {
    color: var(--lime);
    font-size: 12px;
    font-style: normal;
    text-align: right;
}
.topic-grid {
    display: grid;
    grid-template-columns: 1.3fr .85fr .85fr;
    gap: 18px;
}
.topic-grid a {
    position: relative;
    min-height: 430px;
    border-radius: 24px;
    overflow: hidden;
    color: #fff;
}
.topic-grid img {
    height: 100%;
    object-fit: cover;
}
.topic-grid a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.9));
}
.topic-grid a div {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}
.topic-grid h3 {
    font-size: 25px;
    margin: 8px 0;
}
.topic-grid p {
    display: -webkit-box;
    font-size: 13px;
    line-height: 1.6;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.about {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 70px;
    padding: 60px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.about h2 {
    font-size: 48px;
    margin: 12px 0;
}
.about p {
    margin-top: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 2;
}
.subscribe {
    margin-bottom: 92px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 45px;
    align-items: center;
    padding: 50px;
    border-radius: 30px;
    background: #ffe4de;
}
.qr-mark {
    aspect-ratio: 1;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: relative;
    border: 10px solid #fff;
    border-radius: 20px;
    background: var(--ink);
    box-shadow: var(--shadow);
}
.qr-mark span {
    position: absolute;
    z-index: 3;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--lime);
    color: var(--green);
    font-size: 27px;
    font-weight: 900;
}
.qr-mark i {
    border: 8px solid #fff;
}
.subscribe h2 {
    margin: 10px 0;
    font-size: 40px;
}
.subscribe p {
    color: #674e48;
    line-height: 1.8;
}
.subscribe-note {
    display: block;
    margin-top: 10px;
    color: #7a5b54;
}
.site-footer {
    padding: 70px 0 25px;
    background: #0c1d19;
    color: #d2dfda;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
}
.footer-grid h2 {
    color: #fff;
    font-size: 15px;
}
.footer-grid p {
    color: #89a198;
    font-size: 13px;
    line-height: 1.8;
}
.footer-grid > div > a:not(.brand) {
    display: block;
    margin: 11px 0;
    font-size: 13px;
}
.footer-brand {
    color: #fff;
}
.footer-bottom {
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #789087;
    font-size: 12px;
}
.back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 20;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--lime);
    color: var(--green);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: .2s;
}
.back-top.show {
    opacity: 1;
    pointer-events: auto;
}
.breadcrumb {
    margin: 28px 0;
    display: flex;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}
.breadcrumb b {
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.category-hero {
    display: grid;
    grid-template-columns: 1fr .85fr;
    align-items: center;
    gap: 45px;
    padding: 48px;
    border-radius: 28px;
    background: #e6f4ee;
}
.category-hero h1 {
    margin: 12px 0;
    font-size: clamp(44px, 6vw, 72px);
}
.category-hero p {
    color: #49655b;
    line-height: 1.9;
}
.category-hero > a {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.category-hero img {
    height: 100%;
    object-fit: cover;
}
.category-hero > a > b {
    position: absolute;
    z-index: 3;
    left: 18px;
    right: 18px;
    bottom: 16px;
    color: #fff;
}
.category-feature {
    grid-template-columns: 1.3fr .85fr .85fr;
}
.listing {
    display: grid;
    gap: 16px;
}
.listing article {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 25px;
    padding: 16px;
    border-radius: 20px;
    background: #fff;
}
.listing .cover {
    border-radius: 14px;
}
.listing h2 {
    margin: 9px 0;
    font-size: 23px;
}
.listing p {
    display: -webkit-box;
    margin: 0 0 13px;
    color: var(--muted);
    line-height: 1.8;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.listing small {
    color: var(--muted);
}
.hot-strip {
    padding: 32px;
    border-radius: 24px;
    background: #e9f0ec;
}
.hot-strip > div > a {
    display: grid;
    grid-template-columns: 45px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 15px 5px;
    border-top: 1px solid #cbd8d1;
}
.hot-strip > div > a > b {
    color: var(--coral);
    font-size: 22px;
}
.hot-strip small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
}
.hot-strip em {
    font-size: 12px;
    font-style: normal;
}
.return-home {
    margin: 38px 0 80px;
}
.video-title {
    max-width: 900px;
    margin: 54px 0 30px;
}
.video-title > span {
    color: var(--coral);
    font-weight: 900;
}
.video-title h1 {
    margin: 12px 0;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.12;
    letter-spacing: -3px;
}
.video-title p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}
.video-title .meta {
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
}
.video-title .meta span {
    padding: 7px 10px;
    border-radius: 99px;
    background: #e7eee9;
}
.favorite {
    border: 1px solid var(--line);
    border-radius: 99px;
    padding: 7px 12px;
    background: #fff;
    cursor: pointer;
}
.favorite.on {
    background: #ffe1dc;
    color: #c53e29;
}
.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    overflow: hidden;
    background: #08110f;
    box-shadow: 0 26px 70px rgba(13,39,32,.25);
}
.player-shell.playing > img {
    transform: scale(1.02);
    filter: brightness(.72);
}
.player-shell > img {
    transition: .6s;
}
.big-play {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    padding-left: 8px;
    border: 0;
    border-radius: 50%;
    background: var(--lime);
    color: var(--green);
    font-size: 28px;
    cursor: pointer;
}
.player-shell.playing .big-play {
    opacity: 0;
    pointer-events: none;
}
.player-overlay {
    position: absolute;
    z-index: 5;
    left: 18px;
    right: 18px;
    bottom: 15px;
    display: grid;
    grid-template-columns: 36px 110px 1fr 36px 36px;
    gap: 10px;
    align-items: center;
    color: #fff;
}
.player-overlay button {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}
.player-time {
    font-size: 12px;
}
.progress {
    height: 4px;
    border-radius: 9px;
    background: rgba(255,255,255,.35);
    overflow: hidden;
}
.progress i {
    display: block;
    width: 18%;
    height: 100%;
    background: var(--lime);
}
.watch-note {
    margin: 18px 0;
    padding: 17px 20px;
    border-left: 4px solid var(--coral);
    background: #fff;
    color: var(--muted);
    line-height: 1.8;
}
.watch-note b {
    color: var(--ink);
}
.detail-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 55px;
}
.detail-grid h2, .shooting-note h2 {
    font-size: 35px;
    margin: 10px 0;
}
.detail-grid p {
    color: var(--muted);
    line-height: 2;
}
.detail-grid aside {
    padding: 30px;
    border-radius: 22px;
    background: var(--green);
    color: #fff;
}
.detail-grid ul {
    padding-left: 20px;
    color: #c7d9d2;
    line-height: 2;
}
.scene-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.scene-gallery figure {
    margin: 0;
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
}
.scene-gallery img {
    height: 100%;
    object-fit: cover;
}
.scene-gallery figcaption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 12px;
}
.shooting-note {
    margin: 75px 0;
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 50px;
    padding: 45px;
    border-radius: 24px;
    background: #fff0dc;
}
.shooting-note .section-label {
    color: var(--coral);
}
.shooting-note p {
    margin: 0;
    color: #6d6255;
    line-height: 2;
}
.end-card {
    padding: 50px;
    border-radius: 28px;
    text-align: center;
    background: var(--ink);
    color: #fff;
}
.end-card > span {
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}
.end-card h2 {
    max-width: 750px;
    margin: 15px auto 28px;
    font-size: 34px;
}
.episode-nav {
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.episode-nav a {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}
.episode-nav a:last-child {
    text-align: right;
}
.episode-nav small {
    display: block;
    color: var(--muted);
    margin-bottom: 5px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 90px;
}
@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        padding: 12px;
        grid-template-columns: repeat(3, 1fr);
        background: #fff;
        border-radius: 16px;
        box-shadow: var(--shadow);
    }
    .main-nav.open {
        display: grid;
    }
    .nav-link {
        justify-content: center;
    }
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        max-height: 420px;
    }
    .feature-grid, .category-feature {
        grid-template-columns: 1fr 1fr;
    }
    .video-card.featured {
        grid-column: span 2;
        grid-row: auto;
    }
    .update-rail, .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .poster-grid, .anime-cards, .timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .topic-grid {
        grid-template-columns: 1fr 1fr;
    }
    .topic-grid a:first-child {
        grid-column: span 2;
    }
    .split-showcase, .classic-layout, .rank-layout, .about, .category-hero, .detail-grid, .shooting-note {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
}
@media (max-width: 640px) {
    .shell {
        width: min(100% - 24px, 1200px);
    }
    .header-inner {
        min-height: 66px;
    }
    .brand-mark {
        width: 34px;
        height: 34px;
    }
    .main-nav {
        top: 62px;
        left: 12px;
        right: 12px;
        grid-template-columns: repeat(2, 1fr);
        max-height: 72vh;
        overflow-y: auto;
    }
    .hero {
        margin-top: 16px;
        min-height: auto;
        padding: 28px 20px;
        border-radius: 22px;
        gap: 25px;
    }
    .hero h1 {
        font-size: 58px;
        letter-spacing: -3px;
    }
    .hero p {
        font-size: 15px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-caption b {
        font-size: 17px;
    }
    .section {
        margin-top: 60px;
    }
    .section-heading {
        align-items: flex-start;
    }
    .section-heading h2 {
        font-size: 30px;
    }
    .feature-grid, .category-feature, .update-rail, .poster-grid, .category-grid, .anime-cards, .timeline, .topic-grid, .scene-gallery, .related-grid {
        grid-template-columns: 1fr;
    }
    .video-card.featured, .topic-grid a:first-child {
        grid-column: auto;
    }
    .update-band, .anime-zone, .rank-section {
        padding: 55px 0;
    }
    .update-rail a {
        grid-template-columns: 46px 40px 1fr;
    }
    .update-rail em {
        display: none;
    }
    .poster-grid .cover {
        aspect-ratio: 16 / 10;
    }
    .split-showcase, .classic-lead, .subscribe {
        padding: 28px 20px;
    }
    .split-showcase h2, .classic-lead h2, .subscribe h2 {
        font-size: 31px;
    }
    .mini-list a {
        grid-template-columns: 28px 72px 1fr;
    }
    .mini-list small {
        display: none;
    }
    .topic-grid a {
        min-height: 370px;
    }
    .about {
        padding: 35px 5px;
        gap: 20px;
    }
    .about h2 {
        font-size: 38px;
    }
    .subscribe {
        grid-template-columns: 1fr;
    }
    .qr-mark {
        width: 180px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .footer-grid > div:first-child, .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
    .category-page .section {
        margin-top: 60px;
    }
    .category-hero {
        padding: 26px 20px;
        gap: 25px;
    }
    .listing article {
        grid-template-columns: 1fr;
    }
    .listing h2 {
        font-size: 20px;
    }
    .hot-strip {
        padding: 20px;
    }
    .hot-strip > div > a {
        grid-template-columns: 32px 1fr;
    }
    .hot-strip em {
        display: none;
    }
    .video-title {
        margin-top: 35px;
    }
    .video-title h1 {
        font-size: 40px;
        letter-spacing: -2px;
    }
    .player-shell {
        border-radius: 16px;
    }
    .big-play {
        width: 64px;
        height: 64px;
    }
    .player-overlay {
        grid-template-columns: 30px 1fr 30px;
    }
    .player-time, .player-overlay button:nth-last-child(2) {
        display: none;
    }
    .detail-grid {
        gap: 20px;
    }
    .shooting-note {
        padding: 28px 20px;
        gap: 10px;
    }
    .end-card {
        padding: 35px 20px;
    }
    .end-card h2 {
        font-size: 25px;
    }
    .episode-nav {
        grid-template-columns: 1fr;
    }
    .episode-nav a:last-child {
        text-align: left;
    }
}
