:root {
    --bg: #0a0d14;
    --panel: #111622;
    --panel-2: #171e2d;
    --ink: #f5f7fb;
    --muted: #9da8bb;
    --line: rgba(255, 255, 255, 0.1);
    --accent: #ff5c45;
    --accent-2: #ffb648;
    --cyan: #52d9d0;
    --radius: 22px;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--bg);
    font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

button {
    color: inherit;
    font: inherit;
}

.shell {
    width: min(calc(100% - 40px), 1200px);
    margin-inline: auto;
}

.icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.icon-fill {
    fill: currentColor;
    stroke: none;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(10, 13, 20, 0.88);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 8px 28px rgba(255, 92, 69, 0.35);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
    position: absolute;
    content: "";
    background: white;
}

.brand-mark::before {
    width: 5px;
    height: 23px;
    transform: rotate(33deg);
    border-radius: 5px;
}

.brand-mark::after {
    width: 18px;
    height: 5px;
    transform: translate(3px, 3px);
    border-radius: 5px;
}

.brand-mark span {
    right: 8px;
    bottom: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 18px;
    letter-spacing: 0.08em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.17em;
}

.main-nav {
    display: flex;
    min-width: 0;
    margin-left: auto;
    align-items: center;
    gap: 2px;
}

.main-nav a {
    display: grid;
    min-width: 64px;
    min-height: 54px;
    padding: 7px 8px;
    place-items: center;
    border-radius: 12px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.2;
    transition: 0.22s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.main-nav a.is-active .icon {
    color: var(--accent-2);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
}

.hero {
    display: grid;
    min-height: 600px;
    padding-top: 52px;
    padding-bottom: 38px;
    align-items: center;
    grid-template-columns: 0.9fr 1.35fr;
    gap: 58px;
}

.hero-copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(54px, 7vw, 94px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy h1 a {
    background: linear-gradient(110deg, #ffffff 25%, #ffbd78 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-copy > p {
    max-width: 560px;
    margin: 0;
    color: #b7c0ce;
    font-size: 17px;
}

.live-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd4cd;
    font-size: 14px;
}

.live-label i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(255, 92, 69, 0.13);
}

.hero-actions {
    display: flex;
    margin-top: 32px;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    padding: 0 21px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 700;
}

.button.primary {
    color: #190805;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.button.ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    margin: 38px 0 0;
    gap: 30px;
}

.hero-stats div {
    display: grid;
}

.hero-stats dt {
    font-size: 23px;
    font-weight: 800;
}

.hero-stats dd {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.hero-screen,
.channel-feature {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    box-shadow: var(--shadow);
    transform: rotate(1.3deg);
}

.hero-screen::before {
    position: absolute;
    z-index: -1;
    inset: -45px;
    content: "";
    background: radial-gradient(circle, rgba(255, 92, 69, 0.32), transparent 67%);
}

.hero-screen img,
.channel-feature img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-screen:hover img,
.channel-feature:hover img {
    transform: scale(1.035);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(5, 7, 11, 0.92));
}

.hero-play {
    position: absolute;
    top: 32px;
    left: 32px;
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.hero-info {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;
    display: grid;
}

.hero-info small {
    color: var(--accent-2);
    font-weight: 700;
}

.hero-info strong {
    margin: 4px 0;
    font-size: clamp(20px, 3vw, 31px);
    line-height: 1.3;
}

.hero-info em {
    color: #d9deea;
    font-size: 13px;
    font-style: normal;
}

.section {
    padding-top: 88px;
    padding-bottom: 88px;
}

.section-heading {
    display: flex;
    margin-bottom: 32px;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}

.section-heading h2,
.about-layout h2,
.app-copy h2,
.rank-intro h2 {
    margin: 5px 0 0;
    font-size: clamp(29px, 4vw, 44px);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.section-heading > p {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
    text-align: right;
}

.eyebrow {
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.cover {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 17px;
    background: #222a3b;
}

.cover img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.38s ease;
}

.video-card:hover .cover img {
    transform: scale(1.05);
}

.play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: rgba(255, 92, 69, 0.9);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translate(-50%, -44%);
    transition: 0.25s ease;
}

.video-card:hover .play-badge {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.duration,
.genre-pill {
    position: absolute;
    padding: 4px 8px;
    border-radius: 7px;
    font-size: 12px;
    line-height: 1.2;
    backdrop-filter: blur(10px);
}

.duration {
    right: 9px;
    bottom: 9px;
    background: rgba(5, 7, 11, 0.78);
}

.genre-pill {
    top: 9px;
    left: 9px;
    color: #15100a;
    background: rgba(255, 190, 78, 0.92);
    font-weight: 700;
}

.card-body {
    padding-top: 15px;
}

.card-body h3 {
    display: -webkit-box;
    min-height: 50px;
    margin: 0;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-body p {
    display: -webkit-box;
    min-height: 44px;
    margin: 8px 0 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.meta-row {
    display: flex;
    color: #7f8a9d;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.meta-row .icon {
    width: 14px;
}

.spotlight-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 28px;
}

.spotlight-layout > .featured-card .cover img {
    aspect-ratio: 16 / 10;
}

.spotlight-layout > .featured-card .card-body h3 {
    font-size: 25px;
}

.mini-stack {
    display: grid;
    gap: 22px;
}

.mini-stack .video-card {
    display: grid;
    align-items: center;
    grid-template-columns: 44% 1fr;
    gap: 18px;
}

.section-dark {
    border-block: 1px solid var(--line);
    background: #0d121c;
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 22px;
}

.poster-grid .cover img {
    aspect-ratio: 16 / 10;
}

.trend-strip {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 18px;
}

.trend-strip .video-card {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--panel);
}

.trend-strip .video-card:first-child {
    background: linear-gradient(145deg, #241820, #151a26);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-card {
    display: grid;
    min-height: 180px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--panel);
    grid-template-columns: 1fr auto;
    transition: transform 0.25s ease;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card > .category-icon {
    grid-column: 1 / -1;
}

.category-card > span:nth-child(2) {
    align-self: end;
}

.category-card > .icon {
    align-self: end;
}

.category-card strong,
.category-card small {
    display: block;
}

.category-card strong {
    margin-bottom: 5px;
    font-size: 19px;
}

.category-card small {
    display: -webkit-box;
    overflow: hidden;
    color: #b2bdcd;
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.category-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    color: #11131a;
    background: var(--accent-2);
}

.category-1 { background: linear-gradient(145deg, #291914, #131824); }
.category-2 { background: linear-gradient(145deg, #2a1318, #151823); }
.category-3 { background: linear-gradient(145deg, #101f35, #131823); }
.category-4 { background: linear-gradient(145deg, #251538, #151823); }
.category-5 { background: linear-gradient(145deg, #332a10, #151823); }
.category-6 { background: linear-gradient(145deg, #112a25, #151823); }
.category-7 { background: linear-gradient(145deg, #24262a, #151823); }
.category-8 { background: linear-gradient(145deg, #0f2a2c, #151823); }

.reel-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.reel-row .cover img {
    aspect-ratio: 3 / 4;
}

.reel-row .card-body p {
    display: none;
}

.anime-zone {
    color: #14201d;
    background: #c9f1e4;
}

.anime-zone .eyebrow,
.anime-zone .meta-row {
    color: #1b7462;
}

.anime-zone .section-heading > p,
.anime-zone .card-body p {
    color: #48665f;
}

.anime-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.anime-grid .cover {
    border: 7px solid rgba(255, 255, 255, 0.55);
    border-radius: 28px;
}

.classic-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 22px;
}

.classic-grid .featured-card {
    grid-row: span 2;
}

.classic-grid .featured-card .cover img {
    aspect-ratio: 4 / 5;
}

.classic-grid .featured-card .card-body h3 {
    font-size: 24px;
}

.schedule-section {
    padding-top: 36px;
}

.timeline {
    position: relative;
    display: grid;
    padding: 18px 0;
    gap: 0;
}

.timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 115px;
    width: 1px;
    content: "";
    background: var(--line);
}

.timeline article {
    display: grid;
    padding: 24px 0;
    align-items: center;
    grid-template-columns: 92px 48px 1fr;
}

.timeline time {
    font-size: 24px;
    font-weight: 800;
}

.timeline time small,
.timeline div b {
    display: block;
    color: var(--accent-2);
    font-size: 12px;
}

.timeline article > span {
    z-index: 1;
    width: 13px;
    height: 13px;
    justify-self: center;
    border: 3px solid var(--bg);
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.timeline h3,
.timeline p {
    margin: 0;
}

.timeline h3 {
    font-size: 20px;
}

.timeline p {
    color: var(--muted);
    font-size: 13px;
}

.rank-section {
    background: linear-gradient(110deg, #ee4b37, #ff8756);
    color: #180b08;
}

.rank-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
}

.rank-intro .eyebrow,
.rank-intro p {
    color: #5a2119;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.rank-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rank-list li {
    display: grid;
    padding: 15px 0;
    align-items: center;
    border-bottom: 1px solid rgba(24, 11, 8, 0.18);
    grid-template-columns: 50px 1fr 100px 70px 50px;
    gap: 12px;
}

.rank-list li > b {
    font-size: 25px;
    font-style: italic;
}

.rank-list a {
    font-weight: 800;
}

.rank-list span,
.rank-list em,
.rank-list time {
    font-size: 12px;
    font-style: normal;
}

.topic-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
}

.topic-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    border-radius: 24px;
}

.topic-card.topic-wide {
    min-height: 520px;
    grid-row: span 2;
}

.topic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topic-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(4, 6, 10, 0.94));
}

.topic-card div {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 24px;
    left: 24px;
}

.topic-card span {
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 800;
}

.topic-card h3 {
    margin: 4px 0;
    font-size: 25px;
}

.topic-card p {
    margin: 0 0 12px;
    color: #c6cedb;
    font-size: 13px;
}

.topic-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
}

.recommendation-board {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 26px;
}

.editor-note,
.tag-cloud {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 25px;
    background: var(--panel);
}

.editor-note {
    display: flex;
    gap: 22px;
}

.avatar {
    display: grid;
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #1c0e08;
    background: var(--accent-2);
    font-weight: 900;
}

.editor-note h2 {
    margin: 3px 0 8px;
}

.editor-note p {
    color: #c1c9d6;
}

.editor-note a {
    display: inline-flex;
    color: var(--accent-2);
    align-items: center;
    gap: 7px;
    font-weight: 800;
}

.tag-cloud {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-cloud a {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #c7cfdb;
}

.about-section {
    border-block: 1px solid var(--line);
    background: #0e131d;
}

.about-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
}

.about-layout p {
    margin-top: 0;
    color: #b8c1cf;
    font-size: 17px;
}

.app-panel {
    display: grid;
    margin-top: 88px;
    margin-bottom: 88px;
    padding: 58px;
    overflow: hidden;
    border-radius: 32px;
    color: #10201c;
    background: linear-gradient(120deg, #bff3e1, #f4e19d);
    grid-template-columns: 1fr 300px;
    gap: 50px;
}

.app-panel .eyebrow {
    color: #18705e;
}

.app-copy p {
    max-width: 650px;
}

.app-copy .button.primary {
    margin-top: 14px;
    color: white;
    background: #10201c;
}

.subscribe-status {
    display: block;
    margin-top: 9px;
    color: #44635c;
}

.brand-code {
    position: relative;
    display: grid;
    width: 250px;
    height: 250px;
    padding: 32px;
    justify-self: end;
    border: 11px solid white;
    border-radius: 28px;
    background: #10201c;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.brand-code i,
.brand-code > span {
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: #d9f3c9;
}

.brand-code > span {
    color: #10201c;
    font-size: 30px;
    font-weight: 900;
}

.brand-code i:nth-of-type(2),
.brand-code i:nth-of-type(4),
.brand-code i:nth-of-type(7) {
    background: var(--accent);
}

.brand-code b {
    position: absolute;
    right: 0;
    bottom: -35px;
    left: 0;
    color: #335048;
    text-align: center;
    font-size: 11px;
}

.site-footer {
    padding-top: 60px;
    border-top: 1px solid var(--line);
    background: #070a10;
}

.footer-grid {
    display: grid;
    padding-bottom: 50px;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 48px;
}

.footer-grid h2 {
    margin: 0 0 13px;
    font-size: 14px;
}

.footer-grid > div:not(.footer-brand) a {
    display: block;
    margin: 7px 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-grid p {
    max-width: 350px;
    color: #778296;
    font-size: 13px;
}

.copyright {
    display: flex;
    padding: 18px 0;
    color: #657084;
    border-top: 1px solid var(--line);
    justify-content: space-between;
    font-size: 12px;
}

.back-top {
    position: fixed;
    z-index: 40;
    right: 20px;
    bottom: 20px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--panel-2);
    opacity: 0;
    cursor: pointer;
    transform: translateY(12px);
    transition: 0.25s ease;
}

.back-top.is-visible {
    opacity: 1;
    transform: none;
}

.breadcrumb {
    display: flex;
    padding-top: 32px;
    color: var(--muted);
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

.breadcrumb strong {
    color: white;
    font-weight: 600;
}

.channel-hero {
    display: grid;
    min-height: 430px;
    padding-top: 44px;
    padding-bottom: 40px;
    align-items: center;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 60px;
}

.channel-copy h1 {
    margin: 12px 0;
    font-size: clamp(46px, 7vw, 76px);
    line-height: 1;
}

.channel-copy p {
    color: #b8c1d0;
}

.channel-copy .category-icon {
    margin-bottom: 24px;
}

.channel-meta {
    display: flex;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 8px;
}

.channel-meta span {
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
}

.channel-feature strong {
    position: absolute;
    z-index: 2;
    right: 26px;
    bottom: 24px;
    left: 26px;
    font-size: 26px;
}

.channel-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 20px;
}

.channel-list .featured-card {
    grid-column: span 2;
    grid-row: span 2;
}

.channel-list .featured-card .cover img {
    aspect-ratio: 16 / 10;
}

.channel-list .featured-card .card-body h3 {
    font-size: 24px;
}

.channel-popular {
    background: #101621;
}

.split-panel {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
}

.split-panel h2 {
    margin: 8px 0;
    font-size: 37px;
}

.split-panel p {
    color: var(--muted);
}

.split-panel ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.split-panel li {
    display: grid;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 45px 1fr auto;
    gap: 14px;
}

.split-panel li b {
    color: var(--accent-2);
    font-size: 20px;
}

.split-panel li span {
    color: var(--muted);
    font-size: 13px;
}

.watch-page {
    padding-top: 28px;
}

.watch-header {
    display: flex;
    margin-bottom: 25px;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.watch-header .genre-pill {
    position: static;
    display: inline-block;
}

.watch-header h1 {
    max-width: 850px;
    margin: 10px 0 0;
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.16;
}

.watch-facts {
    display: flex;
    padding-bottom: 8px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 13px;
    font-size: 12px;
}

.watch-facts span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.watch-facts .icon {
    width: 15px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #020306;
    box-shadow: var(--shadow);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.player-shell.is-playing video {
    filter: brightness(0.55);
}

.big-play {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    color: white;
    background: rgba(255, 92, 69, 0.92);
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.player-shell.is-playing .big-play {
    opacity: 0;
}

.player-gradient {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 130px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    pointer-events: none;
}

.player-controls {
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: 16px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}

.player-controls button {
    display: grid;
    padding: 7px;
    border: 0;
    place-items: center;
    background: transparent;
    cursor: pointer;
}

.progress {
    height: 4px;
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.28);
}

.progress i {
    display: block;
    width: 17%;
    height: 100%;
    background: var(--accent);
}

.watch-summary {
    display: grid;
    padding: 56px 0;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 70px;
}

.watch-summary h2,
.scene-section h2,
.highlight-panel h2,
.end-note h2 {
    margin: 7px 0 12px;
    font-size: 28px;
}

.watch-summary p {
    color: #b5bfce;
    font-size: 17px;
}

.watch-summary aside {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--panel);
}

.watch-summary ul {
    padding: 0;
    color: var(--muted);
    list-style: none;
}

.watch-summary li {
    padding: 7px 0;
    border-bottom: 1px solid var(--line);
}

.favorite-button {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: transparent;
    cursor: pointer;
}

.favorite-button.is-saved {
    color: #180b08;
    border-color: var(--accent-2);
    background: var(--accent-2);
}

.scene-section {
    padding: 34px 0 72px;
}

.scene-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.scene-grid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
}

.scene-grid img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.scene-grid figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    padding: 50px 20px 18px;
    background: linear-gradient(transparent, rgba(4, 6, 10, 0.95));
}

.scene-grid figcaption span {
    color: #c2cad6;
    font-size: 12px;
}

.highlight-panel {
    padding: 42px;
    border-radius: 26px;
    color: #17110d;
    background: #f2d586;
}

.highlight-panel > div {
    margin-bottom: 24px;
}

.highlight-panel .eyebrow {
    color: #895b0b;
}

.highlight-panel ul {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.highlight-panel li b,
.highlight-panel li span {
    display: block;
}

.highlight-panel li b {
    color: #b47609;
    font-size: 26px;
}

.highlight-panel li span {
    font-size: 18px;
    font-weight: 900;
}

.highlight-panel li p {
    margin-bottom: 0;
    color: #5f4b23;
    font-size: 13px;
}

.end-note {
    display: grid;
    margin: 70px 0 0;
    padding: 30px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--panel);
    grid-template-columns: 55px 1fr auto;
    gap: 20px;
}

.end-note > span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 15px;
    color: #17110d;
    background: var(--accent-2);
}

.end-note h2,
.end-note p {
    margin: 0;
}

.end-note p {
    color: var(--muted);
    font-size: 13px;
}

.episode-nav {
    display: grid;
    margin-top: 24px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.episode-nav > * {
    display: grid;
    min-height: 95px;
    padding: 20px;
    justify-content: start;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.episode-nav .next {
    justify-content: end;
    text-align: right;
}

.episode-nav small {
    color: var(--accent-2);
}

.episode-nav strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.episode-nav .is-empty {
    color: #6f7a8e;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
