:root {
    color-scheme: dark;
    --bg: #070914;
    --surface: #101423;
    --surface-2: #171c2f;
    --text: #f7f8fc;
    --muted: #a8afc4;
    --accent: #ff5a67;
    --cyan: #5ee6d6;
    --line: rgba(255, 255, 255, .1);
    --radius: 20px;
    --shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    overflow-x: hidden;
    background: radial-gradient(circle at 80% -10%, rgba(83, 79, 214, .22), transparent 34rem), var(--bg);
    color: var(--text);
    font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
}
button {
    font: inherit;
}
.container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}
.skip-link {
    position: fixed;
    left: 12px;
    top: -80px;
    z-index: 100;
    padding: 10px 16px;
    background: var(--accent);
    border-radius: 8px;
}
.skip-link:focus {
    top: 12px;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 9, 20, .9);
    backdrop-filter: blur(18px);
}
.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.brand {
    flex: 0 0 auto;
}
.brand img {
    width: 168px;
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-left: auto;
}
.main-nav a {
    min-height: 48px;
    padding: 8px 10px;
    display: grid;
    place-items: center;
    gap: 0;
    color: var(--muted);
    border-radius: 12px;
    font-size: .78rem;
    line-height: 1.2;
}
.main-nav a:hover, .main-nav a.is-active {
    color: white;
    background: rgba(255, 90, 103, .13);
}
.nav-icon {
    font-size: 1rem;
    color: var(--cyan);
}
.nav-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
}
.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: white;
}
.hero {
    min-height: 610px;
    padding-block: 58px 24px;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 52px;
    align-items: center;
}
.hero-copy h1 {
    margin: 8px 0 0;
    font-size: clamp(3.2rem, 7vw, 6.4rem);
    line-height: .95;
    letter-spacing: -.07em;
}
.hero-copy h1 a {
    background: linear-gradient(105deg, white 25%, #93fff2);
    -webkit-background-clip: text;
    color: transparent;
}
.hero-copy h2 {
    margin: 24px 0 10px;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.2;
}
.hero-copy p {
    color: var(--muted);
    max-width: 38rem;
}
.eyebrow {
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.hero-actions {
    display: flex;
    gap: 12px;
    margin: 28px 0;
    flex-wrap: wrap;
}
.primary-button, .ghost-button {
    min-height: 46px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
}
.primary-button {
    border: 0;
    color: white;
    background: linear-gradient(135deg, var(--accent), #d93673);
    box-shadow: 0 12px 30px rgba(255, 90, 103, .25);
    cursor: pointer;
}
.ghost-button {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
}
.hero-facts {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: .85rem;
}
.hero-facts span {
    padding: 5px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
}
.hero-visual {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    border-radius: 30px 30px 90px 30px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(5,7,16,.88));
}
.hero-visual img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}
.play-badge {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;
    color: white;
    background: rgba(255,90,103,.9);
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.hero-caption {
    position: absolute;
    z-index: 2;
    left: 28px;
    bottom: 24px;
    padding-left: 12px;
    border-left: 3px solid var(--accent);
    font-weight: 800;
}
.section {
    margin-top: 104px;
}
.section-heading {
    margin-bottom: 26px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
}
.section-heading h2, .section h2 {
    margin: 4px 0;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    line-height: 1.15;
}
.section-heading > a {
    color: var(--cyan);
}
.section-intro {
    color: var(--muted);
}
.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}
.spotlight-grid .video-card {
    grid-column: span 3;
}
.spotlight-grid .video-card:first-child {
    grid-column: span 6;
    grid-row: span 2;
}
.spotlight-grid .video-card:first-child .cover-link {
    aspect-ratio: 16 / 10;
}
.video-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    transition: transform .25s, border-color .25s;
}
.video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(94,230,214,.45);
}
.cover-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.cover-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.video-card:hover img {
    transform: scale(1.04);
}
.cover-link .play-badge {
    width: 46px;
    height: 46px;
    font-size: .8rem;
    opacity: .92;
}
.duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 2px 7px;
    border-radius: 5px;
    background: rgba(0,0,0,.8);
    font-size: .75rem;
}
.card-body {
    padding: 16px;
}
.category-chip {
    display: inline-block;
    padding: 2px 9px;
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(94,230,214,.1);
    font-size: .75rem;
}
.card-body h3 {
    min-height: 2.8em;
    margin: 9px 0 6px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}
.card-body p {
    height: 3.2em;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.6;
}
.card-meta {
    margin-top: 13px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: #7f879e;
    font-size: .75rem;
}
.update-rail, .premiere-section, .tag-cloud-section {
    padding: 76px 0;
    background: linear-gradient(90deg, rgba(255,90,103,.07), rgba(94,230,214,.04));
    border-block: 1px solid var(--line);
}
.rail-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
}
.rail-list .video-card {
    scroll-snap-align: start;
}
.hot-layout {
    display: grid;
    grid-template-columns: .42fr .58fr;
    gap: 70px;
    align-items: center;
}
.hot-stack {
    border-top: 1px solid var(--line);
}
.hot-item {
    display: grid;
    grid-template-columns: 54px 132px 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.hot-item img {
    width: 132px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}
.hot-number {
    color: var(--accent);
    font-size: 1.8rem;
    font-weight: 900;
}
.hot-item h3, .hot-item p {
    margin: 3px 0;
}
.hot-item div > span, .hot-item p {
    color: var(--muted);
    font-size: .82rem;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.category-tile {
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
}
.category-tile:hover {
    border-color: var(--cyan);
}
.category-tile strong {
    display: block;
    margin-top: 14px;
    font-size: 1.3rem;
}
.category-tile small, .category-tile p {
    color: var(--muted);
}
.category-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 13px;
    color: #071015;
    background: var(--cyan);
    font-weight: 900;
}
.short-showcase {
    padding: 82px 0;
    background: #111426;
}
.split-stage {
    display: grid;
    grid-template-columns: .34fr .66fr;
    gap: 58px;
    align-items: center;
}
.stage-copy p {
    color: var(--muted);
    margin-bottom: 24px;
}
.poster-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.poster-strip a {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border-radius: 18px;
}
.poster-strip a:nth-child(2) {
    transform: translateY(26px);
}
.poster-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.poster-strip span {
    position: absolute;
    inset: auto 0 0;
    padding: 50px 16px 16px;
    background: linear-gradient(transparent, #090b14);
    font-weight: 800;
}
.anime-feature {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 52px;
    align-items: center;
}
.anime-art {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 60px 18px 18px 18px;
}
.anime-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.anime-feature ul {
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}
.anime-feature li {
    padding: 11px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}
.anime-feature li span {
    color: var(--muted);
}
.classic-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 22px;
}
.classic-card {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 999px 999px 24px 24px;
    background: var(--surface);
}
.classic-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 999px 999px 18px 18px;
}
.classic-card span {
    color: var(--accent);
    font-size: .78rem;
}
.classic-card h3, .classic-card p {
    margin-inline: 10px;
}
.classic-card p {
    color: var(--muted);
    font-size: .85rem;
}
.premiere-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}
.premiere-timeline div {
    padding: 24px;
    border-right: 1px solid var(--line);
}
.premiere-timeline time {
    display: block;
    color: var(--accent);
    font-size: 1.6rem;
    font-weight: 900;
}
.premiere-timeline strong, .premiere-timeline span {
    display: block;
}
.premiere-timeline span {
    color: var(--muted);
    font-size: .82rem;
}
.ranking-layout {
    display: grid;
    grid-template-columns: .36fr .64fr;
    gap: 70px;
    align-items: start;
}
.ranking-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ranking-list li {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}
.ranking-list li > span {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 900;
}
.ranking-list div small {
    display: block;
    color: var(--muted);
}
.ranking-list li > strong {
    color: var(--cyan);
}
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.mosaic-item {
    position: relative;
    min-height: 270px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 24px;
}
.mosaic-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(5,7,16,.94));
}
.mosaic-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mosaic-item span, .mosaic-item h3, .mosaic-item p {
    position: relative;
    z-index: 2;
    margin: 3px 0;
}
.mosaic-item span {
    color: var(--cyan);
    font-size: .78rem;
}
.mosaic-item p {
    color: #c0c6d6;
    font-size: .85rem;
}
.mosaic-1 {
    grid-row: span 2;
    min-height: 558px;
}
.editor-note {
    padding: 32px;
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 24px;
    align-items: center;
    border: 1px solid rgba(94,230,214,.25);
    border-radius: 24px;
    background: linear-gradient(120deg, rgba(94,230,214,.08), rgba(255,90,103,.06));
}
.editor-avatar {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #071015;
    background: var(--cyan);
    font-size: 1.6rem;
    font-weight: 900;
}
.editor-note p {
    margin: 5px 0;
    color: var(--muted);
}
.mood-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.mood-grid a {
    min-height: 170px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
}
.mood-grid a:nth-child(even) {
    background: linear-gradient(145deg, #202341, #121524);
}
.mood-grid span {
    color: var(--accent);
    font-size: .82rem;
}
.mood-grid strong {
    font-size: 1.1rem;
}
.mood-grid small {
    color: var(--muted);
}
.tag-layout {
    display: grid;
    grid-template-columns: .25fr .75fr;
    gap: 54px;
    align-items: start;
}
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tag-cloud a {
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.03);
}
.tag-cloud a:hover {
    color: #071015;
    background: var(--cyan);
}
.about-layout {
    display: grid;
    grid-template-columns: .34fr .66fr;
    gap: 60px;
    padding: 44px;
    border-radius: 28px;
    background: var(--surface);
}
.about-layout p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1.04rem;
}
.subscribe-band {
    margin-top: 104px;
    padding: 64px 0;
    color: #071015;
    background: var(--cyan);
}
.subscribe-layout {
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 60px;
    align-items: center;
}
.subscribe-layout .eyebrow {
    color: #b82850;
}
.subscribe-layout h2 {
    margin: 4px 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
}
.subscribe-button {
    padding: 11px 20px;
    border: 0;
    border-radius: 10px;
    color: white;
    background: #071015;
    cursor: pointer;
    font-weight: 800;
}
.subscribe-status {
    min-height: 1.6em;
    margin: 8px 0 0;
    font-weight: 800;
}
.brand-code {
    width: 190px;
    height: 190px;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border: 10px solid #071015;
    background: #f7fffe;
}
.brand-code span {
    grid-column: span 2;
    display: grid;
    place-items: center;
    color: white;
    background: #071015;
    font-size: 1.6rem;
    font-weight: 900;
}
.brand-code i {
    background: #071015;
}
.brand-code i:nth-of-type(2), .brand-code i:nth-of-type(5), .brand-code i:nth-of-type(7) {
    border-radius: 50%;
    background: var(--accent);
}
.site-footer {
    padding: 64px 0 24px;
    background: #04050b;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
}
.footer-grid h2 {
    font-size: 1rem;
}
.footer-grid p, .footer-grid a {
    display: block;
    margin: 7px 0;
    color: var(--muted);
    font-size: .88rem;
}
.copyright {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: #70778c;
    font-size: .82rem;
}
.back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: white;
    background: var(--surface-2);
    cursor: pointer;
}
.back-top.is-visible {
    display: block;
}
.breadcrumbs {
    padding-top: 30px;
    display: flex;
    gap: 10px;
    color: var(--muted);
    font-size: .86rem;
}
.category-hero {
    min-height: 460px;
    padding-block: 45px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.category-hero h1 {
    margin: 10px 0;
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 1;
}
.category-hero p {
    color: var(--muted);
}
.category-hero > a {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 24px 80px 24px 24px;
}
.category-hero > a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(5,7,16,.9));
}
.category-hero > a img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-hero > a > span:last-child {
    position: absolute;
    z-index: 2;
    left: 24px;
    bottom: 20px;
    font-size: 1.25rem;
    font-weight: 900;
}
.featured-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.featured-row .cover-link {
    aspect-ratio: 16 / 7;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.channel-bottom {
    padding: 38px;
    display: grid;
    grid-template-columns: .56fr .44fr;
    gap: 50px;
    border-radius: 26px;
    background: var(--surface);
}
.channel-bottom p {
    color: var(--muted);
}
.mini-rank {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mini-rank li {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}
.mini-rank li > span {
    color: var(--accent);
    font-weight: 900;
}
.mini-rank small {
    color: var(--muted);
}
.detail-layout {
    max-width: 1040px;
}
.detail-header {
    padding: 44px 0 24px;
}
.detail-header h1 {
    margin: 10px 0;
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 1.15;
}
.detail-header > p {
    max-width: 850px;
    color: var(--muted);
}
.detail-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: .88rem;
}
.player-shell {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #02030a;
    box-shadow: var(--shadow);
}
.player-screen {
    position: relative;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    background-size: cover;
    background-position: center;
}
.big-play {
    width: 86px;
    height: 86px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    color: white;
    background: rgba(255,90,103,.92);
    cursor: pointer;
    font-size: 1.5rem;
}
.player-shell.is-playing .big-play {
    transform: scale(.92);
    opacity: .3;
}
.now-playing {
    position: absolute;
    left: 24px;
    bottom: 18px;
    display: grid;
}
.now-playing span {
    color: var(--cyan);
    font-size: .75rem;
}
.player-controls {
    min-height: 58px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.player-controls button {
    border: 0;
    color: white;
    background: transparent;
    cursor: pointer;
}
.player-controls .progress {
    flex: 1;
    height: 6px;
    padding: 0;
    border-radius: 99px;
    background: #363b4e;
    overflow: hidden;
}
.progress span {
    display: block;
    width: 28%;
    height: 100%;
    background: var(--accent);
}
.watch-note {
    margin-top: 18px;
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
}
.watch-note p {
    margin: 0;
    color: var(--muted);
}
.favorite-button {
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: white;
    background: transparent;
    cursor: pointer;
}
.favorite-button.is-favorite {
    color: #071015;
    background: var(--cyan);
}
.content-block {
    margin: 76px 0;
    max-width: 840px;
}
.content-block p, .detail-columns p {
    color: var(--muted);
    font-size: 1.03rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.gallery-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--surface);
}
.gallery-grid img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.gallery-grid figcaption {
    padding: 10px 14px;
    color: var(--muted);
    font-size: .84rem;
}
.detail-columns {
    margin: 70px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.detail-columns > div {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
}
.end-card {
    padding: 54px;
    text-align: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #1b2040, #30182a);
}
.end-card > span {
    color: var(--cyan);
}
.end-card h2 {
    margin: 8px 0;
}
.end-card p {
    color: var(--muted);
}
.episode-nav {
    margin: 26px 0 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: center;
}
.episode-nav > a:not(.back-channel), .episode-empty {
    min-height: 82px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--muted);
}
.episode-nav strong {
    color: white;
}
.episode-nav .next {
    text-align: right;
}
.back-channel {
    padding: 10px 14px;
    border-radius: 10px;
    color: #071015;
    background: var(--cyan);
    font-weight: 800;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

