:root {
    --bg: #071016;
    --panel: #0d1921;
    --panel-2: #12242e;
    --text: #f4f7f8;
    --muted: #9badb8;
    --line: rgba(255, 255, 255, 0.1);
    --orange: #ff6b35;
    --cyan: #36d7d9;
    --max: 1200px;
    --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); 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; }
button { font: inherit; }
img { display: block; width: 100%; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(7, 16, 22, 0.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border: 2px solid var(--orange); border-radius: 14px 14px 14px 5px; transform: rotate(-4deg); box-shadow: 0 0 28px rgba(255,107,53,.25); }
.brand-mark span { width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid var(--cyan); margin-left: 3px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 1.05rem; letter-spacing: .08em; }
.brand-copy small { color: var(--muted); font-size: .67rem; letter-spacing: .13em; margin-top: 5px; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-link { min-height: 42px; padding: 9px 10px; border-radius: 11px; color: #b9c7ce; display: flex; align-items: center; gap: 6px; font-size: .88rem; white-space: nowrap; }
.nav-link span { color: var(--cyan); }
.nav-link:hover, .nav-link.active { background: #182a34; color: white; }
.nav-link.active { box-shadow: inset 0 -2px var(--orange); }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--panel); border-radius: 12px; padding: 11px; }
.menu-toggle span { display: block; height: 2px; background: white; margin: 5px 0; }
.hero { display: grid; grid-template-columns: .83fr 1.17fr; gap: 40px; align-items: center; padding-block: 54px 30px; min-height: 600px; }
.hero-copy h1 { margin: 20px 0 8px; font-size: clamp(3.6rem, 8vw, 7.8rem); line-height: .95; letter-spacing: -.08em; }
.hero-copy h1 a { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.86); text-shadow: 12px 12px 0 rgba(54,215,217,.12); }
.hero-copy > p { color: #bac7cd; font-size: 1.08rem; max-width: 520px; }
.signal { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-size: .86rem; letter-spacing: .08em; }
.signal i { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 7px rgba(255,107,53,.13); }
.hero-actions { display: flex; gap: 12px; margin: 28px 0; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 20px; border-radius: 13px; border: 1px solid var(--line); cursor: pointer; }
.button.primary { color: #071016; background: var(--orange); border-color: var(--orange); font-weight: 800; box-shadow: 0 12px 30px rgba(255,107,53,.22); }
.button.ghost { background: rgba(255,255,255,.03); color: white; }
.hero-stats { display: flex; gap: 28px; padding-top: 16px; border-top: 1px solid var(--line); }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.35rem; }
.hero-stats span { color: var(--muted); font-size: .8rem; }
.hero-feature { position: relative; min-height: 500px; border-radius: 30px 30px 30px 8px; overflow: hidden; background: var(--panel); box-shadow: 0 28px 70px rgba(0,0,0,.36); }
.hero-feature:before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 35%, rgba(3,10,14,.94)); }
.hero-feature img { height: 500px; object-fit: cover; transition: transform .6s; }
.hero-feature:hover img { transform: scale(1.035); }
.hero-caption { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 27px; }
.hero-caption span, .kicker { color: var(--cyan); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.hero-caption h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); margin: 4px 0; line-height: 1.25; }
.hero-caption p { margin: 0; color: #c6d1d6; }
.hero-play, .play-badge { position: absolute; z-index: 3; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #101010; box-shadow: 0 8px 28px rgba(255,107,53,.36); }
.hero-play { top: 28px; right: 28px; width: 64px; height: 64px; font-size: 1.3rem; }
.hero-time { position: absolute; z-index: 3; top: 43px; right: 108px; padding: 4px 10px; background: rgba(0,0,0,.7); border-radius: 7px; }
.section { margin-top: 100px; }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 28px; }
.section-heading span { color: var(--orange); font-size: .75rem; letter-spacing: .17em; }
.section-heading h2 { margin: 2px 0 0; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; }
.section-heading p { color: var(--muted); margin: 8px 0 0; max-width: 650px; }
.text-link { color: var(--cyan); white-space: nowrap; }
.spotlight-grid { display: grid; grid-template-columns: 1.35fr .85fr; grid-template-rows: repeat(2, 230px); gap: 16px; }
.spotlight-item { position: relative; overflow: hidden; border-radius: var(--radius); }
.spotlight-item:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(3,10,14,.94)); }
.spotlight-item.item-1 { grid-row: 1 / 3; }
.spotlight-item img { height: 100%; object-fit: cover; transition: transform .5s; }
.spotlight-item:hover img { transform: scale(1.04); }
.spotlight-item > div { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 20px; }
.spotlight-item h3 { margin: 3px 0; font-size: 1.35rem; line-height: 1.3; }
.spotlight-item p, .spotlight-item span { margin: 0; color: #b9c9d0; font-size: .84rem; }
.spotlight-item .play-badge { width: 44px; height: 44px; top: 18px; right: 18px; }
.video-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.video-card { min-width: 0; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s, border-color .25s; }
.video-card:hover { transform: translateY(-5px); border-color: rgba(54,215,217,.38); }
.cover { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #14252d; }
.cover img { height: 100%; object-fit: cover; transition: transform .45s; }
.video-card:hover .cover img { transform: scale(1.05); }
.cover:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55)); }
.cover .play-badge { width: 44px; height: 44px; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.duration { position: absolute; z-index: 3; bottom: 9px; right: 9px; padding: 2px 7px; background: rgba(0,0,0,.78); border-radius: 6px; font-size: .75rem; }
.card-body { padding: 16px; }
.eyebrow, .card-meta { display: flex; justify-content: space-between; gap: 10px; align-items: center; color: var(--muted); font-size: .76rem; }
.eyebrow span { color: var(--cyan); }
.card-body h3 { font-size: 1rem; line-height: 1.45; height: 2.9em; margin: 8px 0; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.card-body p { color: var(--muted); font-size: .84rem; line-height: 1.6; height: 3.2em; overflow: hidden; margin: 0 0 12px; }
.favorite { color: #b8c5cc; background: transparent; border: 0; padding: 4px; cursor: pointer; }
.favorite.active { color: var(--orange); }
.dark-panel, .related-band { padding: 85px 0; background: #0b171e; border-block: 1px solid var(--line); }
.horizontal-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.strip-item { position: relative; min-width: 0; }
.strip-item img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: 15px; filter: brightness(.75); }
.strip-rank { position: absolute; z-index: 2; left: 8px; top: -28px; font-size: 4.8rem; line-height: 1; font-weight: 900; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.55); }
.strip-item div { margin: -34px 12px 0; position: relative; z-index: 3; padding: 11px; background: rgba(9,19,25,.91); border: 1px solid var(--line); border-radius: 12px; }
.strip-item div span { color: var(--orange); font-size: .72rem; }
.strip-item h3 { margin: 3px 0; font-size: .9rem; line-height: 1.35; }
.strip-item small { color: var(--muted); }
.category-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.category-card { position: relative; min-height: 210px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: linear-gradient(145deg, var(--panel-2), var(--panel)); }
.category-card:after { content: ""; position: absolute; width: 90px; height: 90px; border: 24px solid currentColor; border-radius: 50%; opacity: .06; right: -40px; bottom: -40px; }
.category-card:hover { border-color: currentColor; }
.category-icon { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 12px; background: currentColor; color: #071016; font-size: 1.25rem; }
.category-card strong { display: block; margin-top: 14px; font-size: 1.05rem; color: white; }
.category-card p { color: var(--muted); font-size: .8rem; line-height: 1.5; margin: 5px 0; }
.category-card em { font-style: normal; font-size: .72rem; }
.coral { color: #ff8061; } .amber { color: #ffbd59; } .blue { color: #62a7ff; } .purple { color: #aa8cff; } .mint { color: #5fe0b7; } .pink { color: #ff7fbd; } .teal { color: #43d7d1; } .red { color: #ff5f6d; } .gold { color: #f1c75b; } .cyan { color: #4be8f0; }
.split-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; padding: 32px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(135deg, #151a24, #0b1e26); }
.short-feature > h2 { font-size: 2.5rem; margin: 4px 0; }
.short-feature > p { color: var(--muted); }
.video-card.compact { display: grid; grid-template-columns: 150px 1fr; margin: 20px 0; }
.video-card.compact .cover { height: 100%; }
.video-card.compact .card-body p { display: none; }
.episode-list > .kicker { display: block; margin-bottom: 12px; }
.episode-list > a { display: flex; align-items: center; gap: 14px; padding: 14px 8px; border-bottom: 1px solid var(--line); }
.episode-list > a > span { font-size: 1.6rem; color: transparent; -webkit-text-stroke: 1px var(--orange); font-weight: 900; }
.episode-list div { flex: 1; display: flex; flex-direction: column; }
.episode-list small { color: var(--muted); }
.episode-list b { color: var(--cyan); }
.anime-stage { padding: 90px 0; background: radial-gradient(circle at 70% 0, rgba(170,140,255,.18), transparent 40%), #101021; }
.poster-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 17px; }
.poster-row a { position: relative; }
.poster-row img { aspect-ratio: 3 / 4; object-fit: cover; border-radius: 80px 80px 16px 16px; border: 1px solid rgba(255,255,255,.16); }
.poster-row span { display: block; margin-top: 11px; font-weight: 700; }
.poster-row small { color: #a9a6c1; }
.cinema-pair { display: grid; grid-template-columns: .65fr 1.35fr; gap: 40px; align-items: center; }
.cinema-copy h2 { font-size: 3rem; margin: 4px 0; }
.cinema-copy p { color: var(--muted); margin-bottom: 24px; }
.cinema-mosaic { display: grid; grid-template-columns: 1.4fr .8fr; grid-template-rows: repeat(2, 190px); gap: 14px; }
.cinema-mosaic a { position: relative; overflow: hidden; border-radius: 15px; }
.cinema-mosaic a:first-child { grid-row: 1 / 3; }
.cinema-mosaic img { height: 100%; object-fit: cover; }
.cinema-mosaic span { position: absolute; inset: auto 0 0; padding: 35px 15px 12px; background: linear-gradient(transparent, rgba(0,0,0,.9)); font-weight: 700; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); }
.timeline > a { display: grid; grid-template-columns: auto 18px 1fr; gap: 10px; position: relative; padding-right: 16px; }
.timeline > a:before { content: ""; position: absolute; left: 67px; right: -10px; top: 17px; height: 1px; background: var(--line); }
.timeline time { color: var(--orange); }
.timeline > a > span { width: 12px; height: 12px; margin-top: 10px; border: 3px solid var(--cyan); border-radius: 50%; background: var(--bg); z-index: 1; }
.timeline small { color: var(--muted); }
.timeline h3 { margin: 4px 0; font-size: 1rem; }
.timeline p { color: var(--muted); font-size: .82rem; }
.ranking-section { background: #e7ecee; color: #0d171c; padding: 90px 0; }
.rank-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; }
.ranking-section .section-heading { display: block; position: sticky; top: 110px; }
.ranking-section .section-heading p { color: #59696f; }
.ranking-section .text-link { display: inline-block; margin-top: 20px; color: #0f7378; }
.rank-list a { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 18px; padding: 18px 0; border-bottom: 1px solid #c2cccf; }
.rank-list > a > strong { font-size: 2rem; color: #879499; }
.rank-list h3 { margin: 0; font-size: 1rem; }
.rank-list span { color: #65767c; font-size: .8rem; }
.rank-list b { color: #d34e20; }
.topic-grid { display: grid; grid-template-columns: 1.3fr .85fr; grid-template-rows: repeat(2, 250px); gap: 16px; }
.topic-grid > a { position: relative; overflow: hidden; border-radius: 20px; }
.topic-grid .topic-1 { grid-row: 1 / 3; }
.topic-grid img { height: 100%; object-fit: cover; filter: brightness(.58); }
.topic-grid > a > div { position: absolute; inset: auto 24px 22px; }
.topic-grid h3 { font-size: 1.5rem; margin: 5px 0; }
.topic-grid p { color: #d0d9dd; font-size: .86rem; }
.topic-grid span { color: var(--cyan); font-size: .75rem; }
.topic-grid small { color: var(--orange); }
.editor-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 24px; }
.editor-note { padding: 30px; border-left: 3px solid var(--orange); background: var(--panel); border-radius: 0 var(--radius) var(--radius) 0; }
.editor-note > span { color: var(--orange); }
.editor-note blockquote { margin: 22px 0; font-size: 1.45rem; line-height: 1.5; }
.editor-note p { color: var(--muted); }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mini-grid .video-card.compact { display: block; margin: 0; }
.tags-section { padding: 72px 0; border-block: 1px solid var(--line); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 11px; }
.tag-cloud a { padding: 11px 17px; border: 1px solid var(--line); border-radius: 999px; color: #c2d0d6; }
.tag-cloud a:hover { color: #071016; background: var(--cyan); }
.about-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; padding: 45px; background: linear-gradient(130deg, #152833, #0e1820); border-radius: 28px; }
.about-section h2 { font-size: 2.8rem; line-height: 1.2; margin: 8px 0; }
.about-section p { color: #b8c6cc; margin-top: 0; }
.subscribe-section { margin-bottom: 100px; display: grid; grid-template-columns: 210px 1fr; gap: 50px; align-items: center; padding: 46px; border-radius: 28px; background: var(--orange); color: #121619; }
.subscribe-section h2 { font-size: 2.5rem; margin: 4px 0; }
.subscribe-section .kicker { color: #6e260f; }
.subscribe-section .button.primary { background: #071016; color: white; border-color: #071016; }
.subscribe-status { margin-left: 15px; }
.qr-art { width: 180px; aspect-ratio: 1; position: relative; display: grid; place-items: center; padding: 18px; background: white; border-radius: 22px; box-shadow: 10px 10px 0 rgba(0,0,0,.14); }
.qr-grid { position: absolute; inset: 16px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; }
.qr-grid i { background: #071016; border-radius: 2px; }
.qr-grid i:nth-child(2n) { opacity: .2; }.qr-grid i:nth-child(3n) { border-radius: 50%; }.qr-grid i:nth-child(7n) { background: var(--orange); opacity: 1; }
.qr-art > span { z-index: 2; display: grid; place-items: center; width: 54px; height: 54px; border: 7px solid white; border-radius: 50%; background: #071016; color: white; font-weight: 900; font-size: 1.3rem; }
.site-footer { padding: 65px 0 25px; background: #040a0e; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 45px; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: .86rem; }
.footer-grid a { display: block; margin: 7px 0; }
.footer-grid h2 { font-size: .9rem; }
.footer-brand { margin-bottom: 16px; }
.copyright { margin-top: 35px; padding-top: 20px; border-top: 1px solid var(--line); color: #65757d; font-size: .78rem; }
.back-top { position: fixed; z-index: 80; right: 20px; bottom: 20px; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: var(--panel-2); color: white; opacity: 0; pointer-events: none; transition: .2s; }
.back-top.visible { opacity: 1; pointer-events: auto; }
.breadcrumb { display: flex; gap: 10px; align-items: center; padding-top: 30px; color: var(--muted); font-size: .84rem; }
.breadcrumb strong { color: #dfe7ea; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.channel-hero { margin-top: 25px; background: linear-gradient(130deg, rgba(255,255,255,.035), rgba(255,255,255,.01)); border-block: 1px solid currentColor; }
.channel-hero-inner { display: grid; grid-template-columns: .72fr 1.28fr; gap: 50px; align-items: center; padding-block: 55px; }
.channel-icon { display: grid; width: 60px; height: 60px; place-items: center; border-radius: 18px; background: currentColor; color: #071016; font-size: 1.7rem; }
.channel-hero h1 { color: white; font-size: 3.8rem; margin: 4px 0; }
.channel-hero p { color: currentColor; }
.channel-intro { color: #c0cdd2; }
.channel-data { display: flex; gap: 24px; margin-top: 20px; color: #99abb3; }
.channel-data span { display: flex; flex-direction: column; }
.channel-data strong { color: white; font-size: 1.1rem; }
.channel-feature { min-height: 390px; position: relative; overflow: hidden; border-radius: 25px; color: white; }
.channel-feature:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.94)); }
.channel-feature img { height: 390px; object-fit: cover; }
.channel-feature > div { position: absolute; z-index: 2; inset: auto 25px 22px; }
.channel-feature h2 { margin: 5px 0; font-size: 1.8rem; }
.channel-feature p { color: #c6d3d8; margin: 0; }
.channel-feature .play-badge { top: 22px; right: 22px; width: 54px; height: 54px; }
.channel-list-section { display: grid; grid-template-columns: .55fr 1.45fr; gap: 50px; }
.channel-list-section .section-heading { align-items: start; }
.channel-list { border-top: 1px solid var(--line); }
.channel-list > a { display: grid; grid-template-columns: 52px 116px 1fr auto; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.channel-list img { aspect-ratio: 16 / 9; object-fit: cover; border-radius: 9px; }
.list-number { color: var(--orange); font-weight: 800; }
.channel-list h3 { margin: 1px 0; font-size: .95rem; }
.channel-list p, .channel-list div > span { color: var(--muted); font-size: .76rem; margin: 0; }
.channel-return { margin-block: 60px 100px; text-align: center; }
.detail-header { max-width: 900px; margin: 45px auto 30px; text-align: center; }
.detail-tag { display: inline-flex; padding: 6px 12px; border: 1px solid rgba(54,215,217,.3); border-radius: 99px; color: var(--cyan); font-size: .8rem; }
.detail-header h1 { font-size: clamp(2rem, 5vw, 4.3rem); line-height: 1.2; margin: 16px 0; }
.detail-header > p { color: #aebdc4; }
.detail-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: .82rem; }
.player-shell { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 28px; background: #03090c; box-shadow: 0 35px 80px rgba(0,0,0,.4); }
.player-shell > img { height: 100%; object-fit: cover; }
.player-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.16) 55%, rgba(0,0,0,.88)); }
.center-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 84px; height: 84px; border-radius: 50%; border: 1px solid rgba(255,255,255,.7); background: rgba(255,107,53,.92); font-size: 1.6rem; cursor: pointer; }
.player-title { position: absolute; left: 25px; top: 22px; display: flex; flex-direction: column; text-shadow: 0 2px 8px black; }
.player-title span { color: var(--cyan); font-size: .75rem; }
.player-controls { position: absolute; inset: auto 20px 17px; display: flex; align-items: center; gap: 12px; font-size: .8rem; }
.player-controls button { color: white; background: transparent; border: 0; cursor: pointer; }
.progress { flex: 1; height: 6px; background: rgba(255,255,255,.3); border-radius: 9px; cursor: pointer; }
.progress i { display: block; width: 0; height: 100%; background: var(--orange); border-radius: inherit; }
.player-shell.playing .center-play { opacity: 0; }
.watch-note { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 20px; margin-top: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); }
.watch-note strong { color: var(--orange); }
.watch-note p { margin: 0; color: var(--muted); }
.story-section { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; margin-top: 85px; }
.story-section h2, .scene-section h2 { font-size: 2.5rem; margin: 5px 0; }
.story-section p { color: #b5c3c9; }
.story-section aside { padding: 26px; background: var(--panel); border-radius: var(--radius); border-top: 3px solid var(--cyan); }
.story-section ul { padding-left: 20px; color: var(--muted); }
.scene-section { margin-top: 80px; }
.scene-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.scene-grid figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--panel); }
.scene-grid img { aspect-ratio: 16 / 9; object-fit: cover; }
.scene-grid figcaption { display: flex; justify-content: space-between; gap: 20px; padding: 15px; }
.scene-grid figcaption span { color: var(--muted); font-size: .82rem; }
.end-note { margin-top: 75px; padding: 38px; text-align: center; background: linear-gradient(135deg, rgba(54,215,217,.12), rgba(255,107,53,.1)); border: 1px solid var(--line); border-radius: 22px; }
.end-note span { color: var(--cyan); }
.end-note h2 { margin: 6px 0; }
.end-note p { color: var(--muted); margin: 0; }
.episode-nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; margin-top: 28px; }
.episode-nav > a:not(.back-channel), .nav-edge { padding: 16px; border: 1px solid var(--line); border-radius: 13px; display: flex; flex-direction: column; }
.episode-nav span { color: var(--muted); font-size: .76rem; }
.episode-nav strong { font-size: .86rem; }
.episode-nav .next { text-align: right; }
.back-channel { padding: 12px 16px; background: var(--orange); color: #0b1013; border-radius: 10px; font-weight: 800; }
.related-videos { margin-bottom: 100px; }
