:root {
    --bg: #07111f;
    --panel: #0d1b2e;
    --panel-2: #12243b;
    --text: #f4f8ff;
    --muted: #9cb0c8;
    --line: rgba(255, 255, 255, 0.11);
    --cyan: #37e2d5;
    --orange: #ff9b52;
    --violet: #9b87ff;
    --max: 1200px;
    --radius: 20px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: radial-gradient(circle at 80% 0, #112a46 0, transparent 30%), var(--bg);
    color: var(--text);
    font-family: "Segoe UI", "Microsoft YaHei", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}
body.nav-open {
    overflow: hidden;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
}
.shell {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}
.icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}
.icon-fill {
    fill: currentColor;
    stroke: currentColor;
}
.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 17, 31, 0.9);
    backdrop-filter: blur(18px);
}
.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 22px;
}
.brand {
    flex: 0 0 auto;
}
.brand img {
    width: 166px;
    height: auto;
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 12px;
    color: #aec0d4;
    font-size: 14px;
    white-space: nowrap;
    transition: .2s ease;
}
.nav-link .icon {
    width: 17px;
}
.nav-link:hover, .nav-link.is-active {
    color: #06131e;
    background: var(--cyan);
}
.header-search, .menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
}
.menu-toggle {
    display: none;
    margin-left: auto;
}
.hero {
    margin-top: 34px;
    min-height: 600px;
    display: grid;
    grid-template-columns: .92fr 1.3fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: linear-gradient(135deg, #0c2138 0%, #091522 70%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}
.hero-copy {
    z-index: 2;
    padding: 58px 34px 52px 52px;
    align-self: center;
}
.hero-label, .eyebrow {
    color: var(--cyan);
    font-weight: 800;
    letter-spacing: .16em;
    font-size: 12px;
    text-transform: uppercase;
}
.hero h1 {
    margin: 15px 0 2px;
    font-size: clamp(52px, 6vw, 88px);
    line-height: 1;
    letter-spacing: -.06em;
}
.hero h1 a {
    background: linear-gradient(90deg, white, #86fff4);
    color: transparent;
    background-clip: text;
}
.hero-lead {
    margin: 18px 0 26px;
    color: #d4dfec;
    font-size: 19px;
}
.hero-feature-info, .watch-meta, .channel-meta {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}
.hero-feature-info span, .channel-meta span {
    padding: 4px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #bfd0e2;
    font-size: 13px;
}
.hero h2 {
    margin: 22px 0 8px;
    font-size: 27px;
}
.hero-copy > p:not(.hero-lead) {
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}
.button {
    min-height: 46px;
    padding: 0 19px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    font-weight: 700;
    cursor: pointer;
}
.button-primary {
    color: #071521;
    background: var(--cyan);
    border-color: var(--cyan);
}
.button-ghost {
    color: var(--text);
    background: rgba(255,255,255,.04);
}
.button-light {
    background: white;
    color: #121529;
}
.hero-visual {
    position: relative;
    min-width: 0;
    overflow: hidden;
}
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0b2036 0%, transparent 35%), linear-gradient(0deg, rgba(7,17,31,.65), transparent 50%);
}
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-play, .center-play {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 78px;
    height: 78px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #06131e;
    background: var(--cyan);
    box-shadow: 0 0 0 12px rgba(55,226,213,.16);
}
.hero-play .icon {
    width: 31px;
    height: 31px;
}
.hero-caption {
    position: absolute;
    z-index: 3;
    left: 34px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-caption b {
    font-size: 38px;
    color: var(--cyan);
}
.hero-caption span {
    font-size: 13px;
    color: #c5d2df;
}
.hero-caption strong {
    color: white;
    font-size: 16px;
}
.signal-strip {
    margin: 24px 0 0;
}
.signal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
}
.signal-grid div {
    padding: 18px 24px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    border-right: 1px solid var(--line);
}
.signal-grid div:last-child {
    border: 0;
}
.signal-grid strong {
    color: var(--cyan);
    font-size: 26px;
}
.signal-grid span {
    color: var(--muted);
    font-size: 13px;
}
.section {
    margin-top: 92px;
}
.section-heading {
    margin-bottom: 26px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}
.section-heading h2, .split-copy h2, .anime-copy h2, .rank-intro h2, .about-section h2, .app-section h2 {
    margin: 5px 0 0;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    letter-spacing: -.025em;
}
.section-more, .text-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--cyan);
    font-weight: 700;
}
.section-more .icon, .text-link .icon {
    width: 17px;
}
.video-grid {
    display: grid;
    gap: 22px;
}
.grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.video-card {
    min-width: 0;
}
.cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 16px;
    background: #172a40;
}
.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.video-card:hover .cover img {
    transform: scale(1.045);
}
.play-badge {
    position: absolute;
    left: 14px;
    bottom: 13px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #07111f;
    background: var(--cyan);
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.play-badge.large {
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%,-50%);
    width: 64px;
    height: 64px;
}
.play-badge .icon {
    width: 18px;
}
.duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 3px 7px;
    border-radius: 7px;
    background: rgba(3,8,15,.83);
    font-size: 12px;
}
.card-body {
    padding: 15px 3px 0;
}
.category-pill {
    display: inline-block;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
}
.card-body h3 {
    min-height: 50px;
    margin: 6px 0;
    font-size: 18px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-body p {
    margin: 0;
    min-height: 45px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.meta {
    margin-top: 11px;
    display: flex;
    justify-content: space-between;
    color: #7389a2;
    font-size: 12px;
}
.meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.meta .icon {
    width: 14px;
}
.latest-panel {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #0b192b;
}
.latest-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.compact-card .card-body p {
    display: none;
}
.compact-card .card-body h3 {
    font-size: 16px;
}
.compact-card .meta span:last-child {
    display: none;
}
.split-feature {
    display: grid;
    grid-template-columns: .76fr 1.24fr;
    border-radius: 28px;
    overflow: hidden;
    background: #e9fbf9;
    color: #071521;
}
.split-copy {
    padding: 58px;
    align-self: center;
}
.split-copy .eyebrow {
    color: #007f78;
}
.split-copy p {
    color: #38505a;
}
.split-image {
    position: relative;
    min-height: 400px;
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.floating-stat {
    position: absolute;
    right: 24px;
    bottom: 24px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(7,17,31,.9);
    color: white;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.category-tile {
    min-height: 150px;
    padding: 22px;
    display: flex;
    gap: 17px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
}
.category-tile:hover {
    border-color: currentColor;
    transform: translateY(-2px);
}
.category-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.09);
}
.category-tile strong {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}
.category-tile small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.accent-cyan {
    --accent: #37e2d5;
}
.accent-orange {
    --accent: #ff9b52;
}
.accent-violet {
    --accent: #9b87ff;
}
.accent-blue {
    --accent: #5cafff;
}
.accent-pink {
    --accent: #ff7db7;
}
.accent-yellow {
    --accent: #ffd75c;
}
.accent-green {
    --accent: #76e39d;
}
.accent-red {
    --accent: #ff6d6d;
}
.category-tile {
    color: var(--accent);
}
.category-tile small {
    color: #9cb0c8;
}
.short-stage {
    padding-left: 30px;
    border-left: 4px solid var(--orange);
}
.anime-zone {
    padding: 44px;
    border-radius: 28px;
    background: linear-gradient(135deg, #30235c, #111e3b);
}
.anime-copy {
    margin-bottom: 30px;
    display: flex;
    align-items: end;
    gap: 22px;
}
.anime-copy p {
    max-width: 420px;
    margin: 0;
    color: #bdbee3;
}
.anime-copy .button {
    margin-left: auto;
}
.poster-card .cover {
    aspect-ratio: 4 / 5;
}
.classic-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 20px;
}
.wide-card:first-child .cover {
    aspect-ratio: 16 / 13;
}
.wide-card .card-body p {
    display: none;
}
.timeline-section {
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 26px;
}
.release-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.release-timeline a {
    padding: 10px 22px 22px;
    border-left: 1px solid var(--line);
}
.release-timeline time {
    display: block;
    color: var(--orange);
    font-size: 32px;
    font-weight: 900;
}
.release-timeline span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}
.release-timeline strong {
    display: block;
    margin-top: 10px;
}
.rank-section {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 60px;
    align-items: center;
}
.rank-intro p {
    color: var(--muted);
}
.rank-row {
    min-height: 74px;
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--line);
}
.rank-no {
    color: var(--cyan);
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
}
.rank-title strong, .rank-title small {
    display: block;
}
.rank-title small, .rank-heat {
    color: var(--muted);
    font-size: 13px;
}
.topic-mosaic {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}
.topic-mosaic a {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 20px;
}
.topic-main {
    grid-row: 1 / 3;
}
.topic-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.topic-mosaic a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4,10,18,.88), transparent 70%);
}
.topic-mosaic span {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 22px;
}
.topic-mosaic small, .topic-mosaic strong, .topic-mosaic em {
    display: block;
}
.topic-mosaic small {
    color: var(--cyan);
}
.topic-mosaic strong {
    font-size: 24px;
}
.topic-mosaic em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}
.tag-cloud {
    padding: 38px;
    display: grid;
    grid-template-columns: .5fr 1.5fr;
    align-items: center;
    gap: 40px;
    border: 1px solid var(--line);
    border-radius: 24px;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}
.tags a {
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: #c8d5e2;
}
.tags a:hover {
    background: var(--cyan);
    color: #06131e;
}
.about-section {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: center;
}
.about-mark {
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 50%;
    background: repeating-radial-gradient(circle, #0c2238 0 9px, #163550 10px 11px);
}
.about-mark span {
    font-size: 66px;
    font-weight: 900;
    letter-spacing: -.1em;
}
.about-mark small {
    color: var(--cyan);
}
.about-section p {
    color: var(--muted);
}
.app-section {
    margin-bottom: 92px;
    padding: 50px 58px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: center;
    border-radius: 30px;
    color: #071521;
    background: linear-gradient(115deg, #37e2d5, #b5fff8);
}
.app-section .eyebrow {
    color: #087c78;
}
.app-copy p {
    max-width: 680px;
    color: #315b60;
}
.app-section .button-primary {
    background: #071521;
    color: white;
    border-color: #071521;
}
.subscribe-note {
    display: block;
    margin-top: 10px;
    color: #3c6b6d;
}
.qr-art {
    padding: 18px;
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 18px;
    align-items: center;
    border-radius: 18px;
    background: white;
}
.qr-grid {
    aspect-ratio: 1;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: white;
}
.qr-grid i {
    background: #071521;
}
.qr-grid i:nth-child(3n), .qr-grid i:nth-child(7n+1) {
    background: white;
}
.qr-art span {
    font-size: 13px;
}
.qr-art strong {
    font-size: 16px;
}
.site-footer {
    padding: 58px 0 24px;
    border-top: 1px solid var(--line);
    background: #050d17;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 50px;
}
.footer-grid h2 {
    margin: 0 0 14px;
    font-size: 15px;
}
.footer-grid a, .footer-grid p {
    display: block;
    margin: 8px 0;
    color: #869ab0;
    font-size: 13px;
}
.footer-brand img {
    width: 160px;
}
.copyright {
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: #63778e;
    font-size: 12px;
}
.back-top {
    position: fixed;
    z-index: 30;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: #06131e;
    background: var(--cyan);
    opacity: 0;
    pointer-events: none;
    transition: .2s;
}
.back-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.breadcrumb {
    padding-top: 28px;
    display: flex;
    gap: 9px;
    color: #71879f;
    font-size: 13px;
}
.breadcrumb strong {
    color: #becbda;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.breadcrumb a:hover {
    color: var(--cyan);
}
.channel-hero {
    margin-top: 24px;
    padding: 42px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 55px;
    align-items: center;
    border-radius: 28px;
    border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, #0b1727), #08121f);
}
.channel-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #06131e;
    background: var(--accent);
}
.channel-icon .icon {
    width: 28px;
    height: 28px;
}
.channel-hero h1 {
    margin: 18px 0 8px;
    font-size: clamp(42px, 6vw, 72px);
}
.channel-hero p {
    color: #b1c1d1;
}
.channel-cover {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border-radius: 20px;
}
.channel-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4,10,18,.85), transparent 50%);
}
.channel-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.channel-cover > strong {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 25px;
    bottom: 20px;
    font-size: 23px;
}
.channel-grid .video-card:first-child {
    grid-column: span 2;
}
.channel-grid .video-card:first-child .cover {
    aspect-ratio: 16 / 7.2;
}
.channel-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.channel-note, .mini-ranking {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.025);
}
.channel-note p {
    color: var(--muted);
}
.mini-ranking > a {
    min-height: 62px;
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
}
.mini-ranking b {
    color: var(--cyan);
}
.mini-ranking strong, .mini-ranking small {
    display: block;
}
.mini-ranking small {
    color: var(--muted);
    font-size: 12px;
}
.watch-shell {
    margin-top: 26px;
}
.watch-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 22px;
}
.watch-heading h1 {
    margin: 8px 0;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.15;
}
.watch-meta {
    color: var(--muted);
    font-size: 13px;
}
.favorite-button {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 15px;
    color: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    cursor: pointer;
}
.favorite-button.is-active {
    color: #07111f;
    background: #ff7da8;
}
.player {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 24px;
    background: black;
}
.player > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.player-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.75), transparent 40%);
}
.center-play {
    border: 0;
    cursor: pointer;
}
.player-controls {
    position: absolute;
    z-index: 5;
    left: 22px;
    right: 22px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.player-controls button {
    padding: 4px;
    border: 0;
    color: white;
    background: transparent;
}
.player-controls .time {
    font-size: 12px;
    white-space: nowrap;
}
.progress {
    height: 4px;
    flex: 1;
    background: rgba(255,255,255,.3);
    border-radius: 9px;
}
.progress i {
    display: block;
    width: 22%;
    height: 100%;
    border-radius: inherit;
    background: var(--cyan);
}
.playing-note {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 62%;
    transform: translateX(-50%);
    padding: 8px 12px;
    border-radius: 9px;
    background: rgba(0,0,0,.65);
    opacity: 0;
}
.player.is-playing .center-play {
    opacity: .15;
}
.player.is-playing .playing-note {
    opacity: 1;
}
.watch-tip {
    margin: 12px 0 0;
    color: #7f93a9;
    font-size: 13px;
}
.article-layout {
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    gap: 50px;
}
.video-article h2 {
    margin-top: 30px;
}
.video-article p {
    color: #a9bbcc;
    line-height: 1.95;
}
.highlight-box {
    margin-top: 34px;
    padding: 28px;
    border-left: 3px solid var(--cyan);
    background: rgba(55,226,213,.06);
}
.highlight-box h2 {
    margin-top: 0;
}
.highlight-box li {
    margin: 9px 0;
    color: #afc0d0;
}
.fact-card {
    align-self: start;
    position: sticky;
    top: 100px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #0c1a2c;
}
.fact-card h2 {
    margin-top: 5px;
}
.fact-card dl {
    margin: 20px 0;
}
.fact-card dl div {
    padding: 11px 0;
    display: grid;
    grid-template-columns: 70px 1fr;
    border-bottom: 1px solid var(--line);
}
.fact-card dt {
    color: #71869d;
}
.fact-card dd {
    margin: 0;
    text-align: right;
}
.fact-card .button {
    width: 100%;
}
.scene-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .75fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}
.scene-grid figure {
    position: relative;
    margin: 0;
    min-height: 220px;
    overflow: hidden;
    border-radius: 16px;
}
.scene-grid figure:first-child {
    grid-row: span 2;
}
.scene-grid figure:last-child {
    grid-column: 2 / 4;
}
.scene-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.scene-grid figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    padding: 7px 9px;
    border-radius: 7px;
    background: rgba(4,10,18,.76);
    font-size: 12px;
}
.episode-nav {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.episode-link {
    min-height: 96px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 17px;
}
.episode-link.next {
    text-align: right;
}
.episode-link small {
    color: var(--cyan);
}
.episode-link strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.episode-link.disabled {
    color: #64798f;
}
.end-note {
    margin-top: 32px;
    padding: 20px;
    text-align: center;
    color: var(--muted);
    border-top: 1px solid var(--line);
}
