:root {
    --bg: #070b14;
    --surface: #0e1524;
    --surface-2: #151e30;
    --paper: #f6f7fb;
    --ink: #101522;
    --muted: #697386;
    --line: rgba(255, 255, 255, 0.12);
    --amber: #ffb547;
    --amber-2: #ff7a3d;
    --cyan: #45d7e8;
    --white: #ffffff;
    --radius: 18px;
    --shadow: 0 22px 60px rgba(3, 8, 20, 0.24);
}

* {
    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;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.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;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    color: var(--white);
    background: rgba(7, 11, 20, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #121722;
    background: linear-gradient(135deg, var(--amber), #ffe0a1);
    border-radius: 13px 13px 13px 4px;
    box-shadow: 0 8px 24px rgba(255, 181, 71, 0.25);
}

.brand-text {
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.nav-link {
    min-height: 42px;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #b9c2d3;
    border-radius: 10px;
    font-size: 14px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 181, 71, 0.13);
}

.nav-link.active {
    box-shadow: inset 0 -2px var(--amber);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    color: white;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    display: block;
    margin: 4px auto;
    background: currentColor;
}

.hero {
    min-height: 580px;
    margin-top: 34px;
    padding: 64px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 56px;
    color: var(--white);
    background: radial-gradient(circle at 68% 35%, rgba(69, 215, 232, 0.17), transparent 30%), linear-gradient(135deg, #0a1020, #11192a 58%, #071a24);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.eyebrow,
.kicker {
    color: var(--amber);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.hero h1 {
    margin: 10px 0 0;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero h1 a {
    background: linear-gradient(110deg, #ffffff 20%, #a9eaf1 58%, #ffcc74);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero h2 {
    margin: 32px 0 12px;
    font-size: clamp(1.45rem, 2.5vw, 2.2rem);
    line-height: 1.25;
}

.hero p {
    color: #b8c3d4;
    font-size: 1.05rem;
}

.hero-actions,
.hero-stats,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.hero-stats {
    margin-top: 22px;
    color: #8593aa;
    font-size: 14px;
}

.hero-stats span:not(:last-child)::after {
    content: "·";
    margin-left: 12px;
}

.button {
    min-height: 48px;
    padding: 11px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
}

.button.primary {
    color: #16130c;
    background: linear-gradient(135deg, var(--amber), #ffd78e);
    box-shadow: 0 12px 30px rgba(255, 181, 71, 0.24);
}

.button.secondary {
    color: inherit;
    background: rgba(127, 139, 160, 0.12);
    border: 1px solid rgba(127, 139, 160, 0.32);
}

.hero-poster,
.feature-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.hero-poster::after,
.feature-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(4, 8, 16, 0.78));
}

.hero-poster img,
.feature-cover img,
.cover img,
.doc-stack img,
.topic-card img,
.player-shell > img,
.scene-grid img {
    height: 100%;
    object-fit: cover;
}

.hero-play,
.play-icon {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    color: #121722;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.hero-play {
    width: 72px;
    height: 72px;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    font-size: 23px;
}

.now-playing {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 18px;
    padding: 6px 10px;
    color: white;
    background: #f34747;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
}

.section {
    margin-top: 100px;
}

.section-heading {
    margin-bottom: 28px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.section-heading h2 {
    margin: 5px 0 0;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.15;
}

.section-heading > p,
.section-heading > a {
    margin: 0;
    color: var(--muted);
}

.section-heading > a,
.text-link {
    font-weight: 800;
}

.section-heading.light,
.section-heading.light > p,
.section-heading.light > a {
    color: white;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 22px;
}

.video-card {
    min-width: 0;
    background: white;
    border: 1px solid #e7e9f0;
    border-radius: var(--radius);
    box-shadow: 0 10px 32px rgba(17, 26, 46, 0.06);
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(17, 26, 46, 0.12);
}

.editorial-grid .featured-card {
    grid-row: span 2;
}

.editorial-grid .featured-card .cover {
    aspect-ratio: 16 / 12;
}

.cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.58));
}

.play-icon {
    width: 46px;
    height: 46px;
    left: 16px;
    bottom: 14px;
    font-size: 15px;
}

.duration {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 12px;
    padding: 3px 8px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 7px;
    font-size: 12px;
}

.card-body {
    padding: 18px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
}

.tag {
    color: #a45c00;
    font-weight: 800;
}

.card-body h3 {
    margin: 10px 0 7px;
    display: -webkit-box;
    overflow: hidden;
    font-size: 1.05rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-body p {
    height: 3.3em;
    margin: 0 0 10px;
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-body time,
.card-body small {
    color: #9198a8;
    font-size: 12px;
}

.latest-strip,
.anime-stage,
.release-calendar,
.about-section {
    padding: 76px 0;
    color: white;
    background: var(--bg);
}

.timeline-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.timeline-list a {
    min-height: 190px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.timeline-list time,
.timeline-list em {
    color: #8390a6;
    font-size: 13px;
    font-style: normal;
}

.timeline-list strong {
    margin: 14px 0 auto;
    line-height: 1.45;
}

.timeline-dot {
    width: 9px;
    height: 9px;
    margin-top: 18px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 181, 71, 0.12);
}

.cinema-row,
.video-grid,
.poster-deck {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.cinema-row .card-body p,
.poster-deck .card-body p {
    display: none;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    min-height: 240px;
    padding: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(12, 20, 38, 0.09);
    border-radius: 20px;
    overflow: hidden;
}

.category-card::after {
    content: "";
    width: 160px;
    height: 160px;
    position: absolute;
    right: -60px;
    bottom: -70px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.08;
}

.category-card h3 {
    margin: 16px 0 5px;
    font-size: 1.35rem;
}

.category-card p {
    margin: 0 0 18px;
    color: #485269;
    font-size: 14px;
}

.category-card strong {
    margin-top: auto;
}

.category-icon,
.channel-symbol {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    font-size: 22px;
}

.tone-cyan { color: #087b89; background: #dff9fb; }
.tone-amber { color: #9d6200; background: #fff0cf; }
.tone-violet { color: #6841a7; background: #eee7ff; }
.tone-pink { color: #b13d68; background: #ffe6ef; }
.tone-blue { color: #2766ac; background: #e2f0ff; }
.tone-green { color: #287354; background: #e2f6ed; }
.tone-red { color: #b83e3e; background: #ffe8e5; }
.tone-gold { color: #947116; background: #fff6d9; }
.tone-orange { color: #a8531f; background: #ffeadc; }

.split-feature {
    padding: 54px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    color: white;
    background: linear-gradient(135deg, #1a0f18, #30131c 50%, #111827);
    border-radius: 26px;
}

.split-copy h2 {
    margin: 12px 0;
    font-size: 2.2rem;
    line-height: 1.25;
}

.split-copy p {
    color: #d8bdc6;
}

.shortplay-list {
    display: grid;
    gap: 10px;
}

.shortplay-list a {
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
}

.shortplay-list a > span {
    color: #ff849d;
    font-size: 22px;
    font-weight: 900;
}

.shortplay-list div {
    display: grid;
}

.shortplay-list small {
    color: #a7939a;
}

.anime-stage {
    background: radial-gradient(circle at 20% 10%, rgba(83, 91, 242, 0.24), transparent 35%), #0b0d21;
}

.poster-deck .video-card:nth-child(odd) {
    transform: translateY(16px);
}

.poster-deck .cover {
    aspect-ratio: 3 / 4;
}

.poster-deck .video-card {
    color: white;
    background: #161a38;
    border-color: rgba(255, 255, 255, 0.09);
}

.documentary-layout,
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}

.doc-lead {
    padding: 38px;
    align-self: stretch;
    background: #e3eee9;
    border-radius: 22px;
}

.doc-lead h2 {
    font-size: 2.4rem;
    line-height: 1.15;
}

.doc-stack {
    display: grid;
    gap: 14px;
}

.doc-stack a {
    padding: 12px;
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 18px;
    background: white;
    border: 1px solid #e5e8ee;
    border-radius: 16px;
}

.doc-stack img {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}

.doc-stack span {
    display: grid;
}

.doc-stack small {
    color: var(--muted);
}

.release-calendar {
    background: #101723;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
}

.calendar-grid > div {
    min-height: 220px;
    padding: 28px;
    background: #101723;
}

.calendar-grid span {
    color: var(--amber);
    font-size: 2rem;
    font-weight: 900;
}

.calendar-grid strong {
    margin-top: 20px;
    display: block;
}

.calendar-grid p {
    color: #8e9aab;
    font-size: 14px;
}

.ranking-list {
    border-top: 2px solid var(--ink);
}

.ranking-list a {
    min-height: 78px;
    display: grid;
    grid-template-columns: 70px 1fr 120px 100px 110px;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #dde1e8;
}

.rank-number {
    color: var(--amber-2);
    font-size: 1.8rem;
    font-weight: 900;
}

.ranking-list span,
.ranking-list time {
    color: var(--muted);
    font-size: 14px;
}

.topic-mosaic {
    min-height: 500px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.topic-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.topic-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(4, 7, 14, 0.9));
}

.topic-card:first-child {
    grid-row: 1 / -1;
}

.topic-overlay {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: grid;
    color: white;
}

.topic-overlay strong {
    margin: 6px 0;
    font-size: 1.35rem;
}

.topic-overlay small,
.topic-overlay em {
    color: #bec6d4;
    font-style: normal;
}

.editor-picks {
    padding: 46px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
    background: white;
    border: 1px solid #e4e7ed;
    border-radius: 24px;
}

.editor-note {
    display: flex;
    align-items: center;
    gap: 18px;
}

.editor-note h2 {
    margin: 4px 0;
}

.avatar {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--ink);
    border-radius: 50%;
    font-weight: 900;
}

.tag-cloud {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    padding: 8px 13px;
    color: #4a5465;
    background: #f1f3f7;
    border-radius: 999px;
    font-size: 14px;
}

.about-section {
    background: linear-gradient(120deg, #08101f, #10212b);
}

.about-grid h2 {
    margin: 6px 0;
    font-size: 2.7rem;
}

.about-grid p {
    color: #afbac9;
}

.app-subscribe {
    margin-bottom: 100px;
    padding: 52px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    color: white;
    background: linear-gradient(135deg, #22203a, #151727 60%, #2b1e17);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.app-copy {
    max-width: 700px;
}

.app-copy h2 {
    margin: 7px 0;
    font-size: 2.4rem;
}

.app-copy p {
    color: #b8bccb;
}

.subscribe-status {
    margin-left: 10px;
    color: #9be1c3;
}

.brand-code {
    width: 174px;
    height: 202px;
    padding: 16px;
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    color: #17141c;
    background: white;
    border-radius: 18px;
}

.brand-code > span {
    grid-column: span 2;
    display: grid;
    place-items: center;
    color: #131727;
    background: var(--amber);
    border-radius: 8px;
    font-size: 24px;
    font-weight: 900;
}

.brand-code i {
    background: #151827;
    border-radius: 3px;
}

.brand-code i:nth-of-type(2),
.brand-code i:nth-of-type(5),
.brand-code i:nth-of-type(7) {
    background: var(--amber);
}

.brand-code small {
    grid-column: 1 / -1;
    text-align: center;
}

.site-footer {
    padding: 64px 0 24px;
    color: #a8b2c3;
    background: #050810;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 50px;
}

.footer-grid h2 {
    color: white;
    font-size: 15px;
}

.footer-grid a:not(.brand),
.footer-grid p {
    margin: 8px 0;
    display: block;
    font-size: 14px;
}

.copyright {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 13px;
}

.back-top {
    width: 46px;
    height: 46px;
    position: fixed;
    z-index: 30;
    right: 20px;
    bottom: 20px;
    display: none;
    color: #151822;
    background: var(--amber);
    border: 0;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.back-top.visible {
    display: block;
}

.breadcrumb {
    padding-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.channel-hero {
    margin-top: 28px;
    padding: 60px 0;
}

.channel-hero-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.channel-hero h1 {
    margin: 4px 0;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1;
}

.channel-hero p {
    max-width: 760px;
    margin: 12px 0 0;
}

.channel-symbol {
    width: 78px;
    height: 78px;
    font-size: 32px;
}

.channel-count {
    display: grid;
    text-align: right;
}

.channel-count strong {
    font-size: 2.8rem;
    line-height: 1;
}

.channel-feature {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 46px;
}

.channel-feature h2 {
    font-size: 2.2rem;
    line-height: 1.25;
}

.channel-feature p {
    color: var(--muted);
}

.detail-meta {
    margin: 18px 0;
    color: var(--muted);
    font-size: 14px;
}

.channel-popular {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: #e9edf3;
    border-radius: 22px;
}

.channel-popular ol {
    margin: 0;
    padding-left: 24px;
}

.channel-popular li {
    padding: 11px 0;
    border-bottom: 1px solid #cfd5df;
}

.channel-popular a {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.channel-popular span {
    color: var(--muted);
    font-size: 13px;
}

.return-row {
    margin-top: 32px;
    margin-bottom: 80px;
}

.video-detail {
    padding-bottom: 100px;
}

.video-title-block {
    max-width: 900px;
    margin: 36px auto 28px;
    text-align: center;
}

.video-title-block h1 {
    margin: 12px 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.2;
}

.video-title-block .detail-meta {
    justify-content: center;
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    color: white;
    background: #05070b;
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(5, 10, 20, 0.28);
    overflow: hidden;
}

.player-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 40%, rgba(0, 0, 0, 0.85));
}

.player-shell.is-playing .player-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 70%, rgba(0, 0, 0, 0.75));
}

.player-center {
    width: 82px;
    height: 82px;
    position: absolute;
    z-index: 3;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    color: #141820;
    background: rgba(255, 255, 255, 0.92);
    border: 0;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
}

.player-shell.is-playing .player-center {
    opacity: 0;
}

.player-caption {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: 26px;
    font-weight: 800;
}

.player-controls {
    position: absolute;
    z-index: 4;
    right: 22px;
    bottom: 18px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.player-controls button {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border: 0;
    border-radius: 9px;
    cursor: pointer;
}

.progress {
    flex: 1;
    accent-color: var(--amber);
}

.volume {
    width: 80px;
    accent-color: var(--amber);
}

.watch-note {
    margin-top: 20px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #e9edf3;
    border-radius: 15px;
}

.watch-note p {
    margin: 0;
    flex: 1;
    color: var(--muted);
    font-size: 14px;
}

.favorite-button {
    min-height: 42px;
    padding: 8px 14px;
    background: white;
    border: 1px solid #ced4df;
    border-radius: 10px;
    cursor: pointer;
}

.favorite-button[aria-pressed="true"] {
    color: #924e00;
    background: #fff0cf;
    border-color: #e8b55d;
}

.article-section {
    margin-top: 72px;
}

.intro-panel {
    padding: 46px;
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: 30px 60px;
    background: white;
    border: 1px solid #e4e7ed;
    border-radius: 22px;
}

.intro-panel h2 {
    margin: 4px 0;
    font-size: 2rem;
}

.intro-panel p {
    margin: 0;
    color: #4f596b;
}

.intro-panel p:last-child {
    grid-column: 2;
}

.scene-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.scene-grid figure {
    margin: 0;
    overflow: hidden;
    background: white;
    border: 1px solid #e4e7ed;
    border-radius: 18px;
}

.scene-grid img {
    aspect-ratio: 16 / 9;
}

.scene-grid figcaption {
    padding: 16px 18px;
    color: var(--muted);
    font-size: 14px;
}

.highlights {
    padding: 46px;
    color: white;
    background: #0d1422;
    border-radius: 24px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.highlight-grid > div {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.highlight-grid span {
    color: var(--amber);
    font-weight: 900;
}

.highlight-grid h3 {
    margin: 12px 0 4px;
}

.highlight-grid p {
    margin: 0;
    color: #aab5c7;
    font-size: 14px;
}

.end-note {
    margin-top: 36px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #245943;
    background: #dff3e9;
    border-radius: 16px;
}

.end-note > span {
    width: 44px;
    height: 44px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: white;
    background: #2b7756;
    border-radius: 50%;
}

.end-note h2,
.end-note p {
    margin: 0;
}

.episode-nav {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 12px;
}

.episode-nav > a,
.episode-nav > span {
    min-height: 90px;
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    border: 1px solid #e1e5eb;
    border-radius: 14px;
}

.episode-nav > :last-child {
    text-align: right;
}

.episode-nav small {
    color: var(--muted);
}

.episode-nav .back-channel {
    align-items: center;
    color: #12151d;
    background: var(--amber);
    border-color: var(--amber);
    font-weight: 900;
}

.related-grid {
    grid-template-columns: repeat(4, 1fr);
}
