:root {
    --bg: #0b0b16;
    --panel: #121321;
    --panel-2: #181a2b;
    --text: #f5f5fb;
    --muted: #9b9daf;
    --line: rgba(255, 255, 255, 0.1);
    --purple: #785cff;
    --pink: #ff4f91;
    --cyan: #4fdcff;
    --radius: 22px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 12% 5%, rgba(121, 92, 255, 0.18), transparent 28%), radial-gradient(circle at 88% 18%, rgba(255, 79, 145, 0.1), transparent 25%);
    content: "";
    pointer-events: none;
}

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

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

button {
    color: inherit;
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(11, 11, 22, 0.88);
    backdrop-filter: blur(18px);
}

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

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

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 15px 15px 15px 6px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 10px 28px rgba(120, 92, 255, 0.35);
    font-size: 22px;
    font-weight: 900;
    place-items: center;
    transform: rotate(-4deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 18px;
    letter-spacing: 0.06em;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.23em;
}

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

.main-nav a {
    display: flex;
    align-items: center;
    padding: 8px 9px;
    border-radius: 12px;
    color: #b8bac9;
    font-size: 13px;
    white-space: nowrap;
    gap: 5px;
    transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(120, 92, 255, 0.14);
    color: #fff;
}

.main-nav a.active {
    box-shadow: inset 0 -2px var(--purple);
}

.nav-icon {
    color: var(--cyan);
    font-size: 15px;
}

.nav-toggle {
    display: none;
    align-items: center;
    min-height: 44px;
    margin-left: auto;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
    cursor: pointer;
    gap: 10px;
}

.hero {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    min-height: 620px;
    padding-block: 56px 72px;
    gap: 56px;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 12px;
    gap: 9px;
}

.live-pill span {
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--pink);
    font-weight: 800;
}

.live-pill b {
    color: var(--muted);
    font-weight: 500;
}

.hero h1 {
    margin: 0;
    font-size: clamp(4rem, 7vw, 6.8rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.95;
}

.hero h1 a {
    background: linear-gradient(105deg, #fff 14%, #b9aaff 54%, #ff8db9);
    background-clip: text;
    color: transparent;
}

.hero h2 {
    max-width: 520px;
    margin: 24px 0 14px;
    font-size: clamp(1.55rem, 3vw, 2.45rem);
    line-height: 1.25;
}

.hero-copy > p {
    max-width: 540px;
    margin: 0;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 750;
    gap: 9px;
    transition: 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 14px 32px rgba(120, 92, 255, 0.3);
}

.button.ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px 10px 32px 32px;
    background: #171829;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-3deg);
}

.hero-visual::before {
    position: absolute;
    inset: 14px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px 6px 24px 24px;
    content: "";
    pointer-events: none;
}

.hero-visual img,
.cover img,
.channel-feature img,
.channel-thumb img,
.mini-story img,
.drama-ticket img,
.topic-panel img,
.scene-grid img,
.anime-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(8, 8, 18, 0.9));
}

.hero-play,
.play-badge {
    position: absolute;
    display: grid;
    z-index: 3;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: rgba(9, 9, 20, 0.6);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(9px);
    place-items: center;
}

.hero-play {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-caption {
    position: absolute;
    right: 40px;
    bottom: 35px;
    left: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.hero-caption small,
.kicker {
    color: #b8aaff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.hero-caption strong {
    margin: 6px 0;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.hero-caption span {
    color: #c8c9d4;
    font-size: 13px;
}

.section {
    margin-top: 104px;
}

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

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

.section-heading > a {
    color: #bbb4ff;
    font-size: 14px;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 24px;
}

.video-card {
    min-width: 0;
}

.cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    background: var(--panel-2);
}

.cover img {
    transition: transform 0.45s ease;
}

.cover:hover img {
    transform: scale(1.045);
}

.cover .play-badge {
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    opacity: 0;
    transform: translate(-50%, -42%);
    transition: 0.25s ease;
}

.cover:hover .play-badge {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 3px 7px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.75);
    font-size: 11px;
}

.card-body {
    padding: 16px 3px 0;
}

.eyebrow {
    display: inline-block;
    color: #9787ff;
    font-size: 12px;
    font-weight: 800;
}

.card-body h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 6px 0 8px;
    font-size: 17px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
    color: #777a8c;
    font-size: 12px;
    gap: 12px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--panel);
}

.featured-card .cover {
    height: 100%;
    border-radius: 0;
}

.featured-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
}

.featured-card .card-body h3 {
    font-size: 24px;
}

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

.mini-story {
    display: grid;
    grid-template-columns: 142px 1fr;
    align-items: center;
    min-height: 110px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    gap: 16px;
}

.mini-story img {
    aspect-ratio: 4 / 3;
}

.mini-story span {
    display: flex;
    flex-direction: column;
    padding-right: 14px;
}

.mini-story small {
    color: var(--muted);
    font-size: 11px;
}

.mini-story strong {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 5px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.strip-section {
    padding: 76px 0;
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.poster-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

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

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

.poster-row .card-body h3 {
    font-size: 15px;
}

.hot-split {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: linear-gradient(120deg, #511a55, #16172a 48%);
}

.hot-feature {
    padding: 52px;
}

.hot-feature h2 {
    margin: 6px 0 16px;
    font-size: 2.5rem;
    line-height: 1.15;
}

.hot-feature p {
    color: #c3b9ca;
}

.hot-list {
    padding: 24px;
    background: rgba(7, 7, 16, 0.45);
}

.hot-list a {
    display: grid;
    grid-template-columns: 55px 1fr auto;
    align-items: center;
    padding: 18px 12px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
}

.hot-list a:last-child {
    border-bottom: 0;
}

.hot-list b {
    color: #ff83b5;
    font-size: 23px;
    font-style: italic;
}

.hot-list span {
    display: flex;
    flex-direction: column;
}

.hot-list small,
.hot-list em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 18%, #151626), #11121f 67%);
    transition: 0.25s ease;
}

.category-tile:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.category-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    border-radius: 14px;
    background: var(--accent);
    color: #080812;
    font-size: 20px;
    font-weight: 900;
    place-items: center;
}

.category-tile strong {
    font-size: 21px;
}

.category-tile p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.category-tile > small {
    position: absolute;
    right: 20px;
    bottom: 16px;
    color: color-mix(in srgb, var(--accent) 70%, #fff);
    font-size: 9px;
    letter-spacing: 0.15em;
}

.drama-section {
    padding: 48px;
    border-radius: 30px;
    background: linear-gradient(140deg, #6330e8, #d44195);
}

.light-heading .kicker,
.light-heading > a {
    color: #fff;
}

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

.drama-ticket {
    position: relative;
    display: flex;
    overflow: hidden;
    aspect-ratio: 3 / 4.6;
    border-radius: 18px;
    background: #171426;
}

.drama-ticket::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 36%, rgba(7, 5, 16, 0.92));
    content: "";
}

.ticket-number {
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 2;
    padding: 3px 8px;
    border-radius: 6px;
    background: #fff;
    color: #1a1021;
    font-size: 10px;
    font-weight: 900;
}

.ticket-copy {
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.ticket-copy small {
    margin-top: 7px;
    color: #c9c3d4;
    font-size: 10px;
}

.anime-feature {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: stretch;
    min-height: 460px;
    overflow: hidden;
    border: 1px solid rgba(79, 220, 255, 0.2);
    border-radius: 30px;
    background: linear-gradient(150deg, #0f2a43, #141326);
}

.anime-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.anime-copy h2 {
    margin: 8px 0 16px;
    font-size: 2.45rem;
    line-height: 1.25;
}

.anime-copy p {
    color: #a8b9c7;
}

.anime-copy a {
    margin-top: 18px;
    color: var(--cyan);
    font-weight: 800;
}

.anime-collage {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 1fr 1fr;
    min-height: 460px;
}

.anime-collage a {
    position: relative;
    overflow: hidden;
}

.anime-collage a:first-child {
    grid-row: 1 / 3;
}

.anime-collage span {
    position: absolute;
    right: 14px;
    bottom: 12px;
    left: 14px;
    padding: 6px 8px;
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.65);
    font-size: 12px;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.timeline::before {
    position: absolute;
    top: 52px;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--cyan));
    content: "";
}

.timeline a {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-right: 32px;
}

.timeline time {
    color: #b0a6ff;
    font-size: 18px;
    font-weight: 800;
}

.timeline-dot {
    z-index: 2;
    width: 13px;
    height: 13px;
    margin: 12px 0 20px;
    border: 3px solid var(--bg);
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 2px var(--pink);
}

.timeline a > span:last-child {
    display: flex;
    flex-direction: column;
}

.timeline small {
    color: var(--muted);
    font-size: 11px;
}

.timeline strong {
    margin-top: 6px;
}

.upcoming-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    padding: 44px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #111220;
    gap: 50px;
}

.upcoming-copy h2 {
    margin: 5px 0 10px;
    font-size: 2.6rem;
}

.upcoming-copy p {
    color: var(--muted);
}

.schedule-board {
    display: grid;
    gap: 10px;
}

.schedule-board a {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    align-items: center;
    min-height: 64px;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    gap: 16px;
}

.schedule-board span {
    color: #a99cff;
    font-weight: 800;
}

.schedule-board em {
    color: var(--pink);
    font-style: normal;
    font-weight: 800;
}

.ranking-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.025);
    list-style: none;
}

.ranking-list li + li {
    border-top: 1px solid var(--line);
}

.ranking-list a {
    display: grid;
    grid-template-columns: 65px minmax(220px, 1fr) minmax(120px, 0.6fr) 90px;
    align-items: center;
    padding: 18px 22px;
    gap: 20px;
}

.rank-no {
    font-size: 22px;
    font-style: italic;
    font-weight: 900;
}

.ranking-list li:nth-child(-n+3) .rank-no {
    color: var(--pink);
}

.rank-title {
    display: flex;
    flex-direction: column;
}

.rank-title small {
    color: var(--muted);
    font-size: 11px;
}

.rank-meter {
    overflow: hidden;
    height: 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.08);
}

.rank-meter i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--purple), var(--pink));
}

.ranking-list em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    text-align: right;
}

.topic-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: repeat(2, 230px);
    gap: 16px;
}

.topic-panel {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

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

.topic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 18%, rgba(8, 8, 18, 0.94));
}

.topic-copy {
    position: absolute;
    right: 28px;
    bottom: 24px;
    left: 28px;
    display: flex;
    flex-direction: column;
}

.topic-copy small {
    color: #bdb4ff;
    font-size: 11px;
}

.topic-copy strong {
    margin: 5px 0;
    font-size: 22px;
}

.topic-copy em {
    color: #babac5;
    font-size: 12px;
    font-style: normal;
}

.topic-panel:first-child .topic-copy strong {
    font-size: 32px;
}

.editor-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    border-block: 1px solid var(--line);
    padding-block: 48px;
    gap: 60px;
}

.editor-note > span {
    color: var(--pink);
    font-size: 2.8rem;
    font-weight: 900;
}

.editor-note h2 {
    margin: 2px 0 12px;
    font-size: 2rem;
}

.editor-note p {
    color: var(--muted);
}

.editor-picks {
    display: grid;
    gap: 12px;
}

.editor-picks a {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    padding: 16px;
    border-radius: 14px;
    background: var(--panel);
    gap: 16px;
}

.editor-picks span {
    display: grid;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(120, 92, 255, 0.16);
    color: #b9aeff;
    font-size: 12px;
    place-items: center;
}

.editor-picks small {
    color: var(--muted);
}

.discover-grid,
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tags-section {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
    padding: 38px;
    border-radius: 22px;
    background: linear-gradient(120deg, rgba(120, 92, 255, 0.18), rgba(255, 79, 145, 0.08));
    gap: 30px;
}

.tags-section h2 {
    margin: 6px 0 0;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #c7c4d5;
    font-size: 13px;
}

.about-section {
    padding: 78px 0;
    background: linear-gradient(90deg, #18162a, #10121f);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.45fr 1.55fr;
    align-items: center;
    gap: 60px;
}

.about-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120, 92, 255, 0.24), transparent 70%);
}

.about-number strong {
    font-size: 4.4rem;
    line-height: 1;
}

.about-number span {
    color: var(--muted);
    font-size: 12px;
}

.about-grid h2 {
    margin: 5px 0 15px;
    font-size: 2.4rem;
}

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

.app-section {
    display: grid;
    grid-template-columns: 1fr 280px;
    align-items: center;
    margin-bottom: 104px;
    padding: 54px;
    border-radius: 30px;
    background: linear-gradient(135deg, #20215d, #6e2767);
    gap: 70px;
}

.app-copy h2 {
    max-width: 680px;
    margin: 8px 0 14px;
    font-size: 2.55rem;
    line-height: 1.25;
}

.app-copy p {
    max-width: 720px;
    color: #c8c7db;
}

.qr-card {
    position: relative;
    display: grid;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 28px;
    background: #f7f3ff;
    color: #24162b;
    place-items: center;
}

.qr-card strong {
    z-index: 2;
    display: grid;
    width: 66px;
    height: 66px;
    border-radius: 22px 22px 22px 7px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
    font-size: 34px;
    place-items: center;
}

.qr-card small {
    position: absolute;
    bottom: 14px;
    z-index: 2;
    font-weight: 800;
}

.qr-pattern {
    position: absolute;
    inset: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    opacity: 0.14;
    gap: 8px;
}

.qr-pattern span {
    border: 7px solid #1c1022;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #080811;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 0.7fr 1fr;
    padding-block: 62px;
    gap: 48px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-grid h2 {
    margin: 0 0 9px;
    font-size: 15px;
}

.footer-grid a,
.footer-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-brand p {
    max-width: 380px;
    margin-top: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-block: 20px;
    border-top: 1px solid var(--line);
    color: #6f7181;
    font-size: 12px;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: grid;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(20, 20, 35, 0.85);
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
    place-items: center;
    transition: 0.2s ease;
}

.back-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    padding-top: 34px;
    color: var(--muted);
    font-size: 13px;
    gap: 9px;
}

.breadcrumb strong {
    overflow: hidden;
    color: #e4e4ec;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.channel-hero {
    margin-top: 26px;
    padding: 68px 0;
    border-block: 1px solid color-mix(in srgb, var(--channel) 30%, transparent);
    background: radial-gradient(circle at 10% 30%, color-mix(in srgb, var(--channel) 22%, transparent), transparent 32%), linear-gradient(110deg, #11121f, #0b0b16);
}

.channel-hero-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;
}

.channel-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 17px;
    background: var(--channel);
    color: #090914;
    font-size: 24px;
    font-weight: 900;
    place-items: center;
}

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

.channel-hero p {
    color: #b0b1c0;
}

.channel-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
    gap: 24px;
}

.channel-stats span {
    display: flex;
    flex-direction: column;
    color: var(--muted);
    font-size: 10px;
}

.channel-stats b {
    color: var(--channel);
    font-size: 17px;
}

.channel-feature {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.channel-feature::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(5, 5, 12, 0.92));
    content: "";
}

.channel-feature .play-badge {
    top: 24px;
    right: 24px;
}

.channel-feature > div {
    position: absolute;
    right: 28px;
    bottom: 22px;
    left: 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

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

.channel-feature strong {
    margin-top: 4px;
    font-size: 22px;
}

.channel-list {
    display: grid;
    gap: 18px;
}

.channel-list article {
    position: relative;
    display: grid;
    grid-template-columns: 330px 1fr 70px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025);
    gap: 24px;
}

.channel-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
}

.channel-thumb span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    place-items: center;
    transform: translate(-50%, -50%);
}

.channel-item-copy h2 {
    margin: 7px 0;
    font-size: 21px;
}

.channel-item-copy p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.text-link {
    display: inline-block;
    margin-top: 12px;
    color: #b4a8ff;
    font-size: 13px;
    font-weight: 800;
}

.list-index {
    color: rgba(255, 255, 255, 0.12);
    font-size: 38px;
    font-style: italic;
    font-weight: 900;
}

.popular-rail {
    padding: 46px;
    border-radius: 28px;
    background: #111220;
}

.return-home {
    margin-block: 52px 104px;
    text-align: center;
}

.watch-page {
    padding-top: 32px;
}

.watch-header {
    max-width: 920px;
    margin-bottom: 28px;
}

.watch-header h1 {
    margin: 6px 0 12px;
    font-size: clamp(2rem, 4.8vw, 4.3rem);
    line-height: 1.16;
}

.watch-meta {
    display: flex;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
    gap: 14px;
}

.player-shell {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background: #05050a;
    box-shadow: var(--shadow);
}

.player-screen {
    position: relative;
    display: grid;
    aspect-ratio: 16 / 8.6;
    background-position: center;
    background-size: cover;
    place-items: center;
}

.player-screen::before {
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 10, 0.32);
    content: "";
}

.player-main {
    z-index: 2;
    display: grid;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(15, 15, 30, 0.6);
    cursor: pointer;
    backdrop-filter: blur(10px);
    place-items: center;
    transition: 0.2s ease;
}

.player-main:hover {
    background: var(--purple);
    transform: scale(1.05);
}

.player-state {
    position: absolute;
    bottom: 26px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 99px;
    background: rgba(0, 0, 0, 0.62);
    font-size: 12px;
}

.player-controls {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 0 18px;
    gap: 14px;
}

.player-controls button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.player-controls > span {
    color: #b6b6c3;
    font-size: 12px;
    white-space: nowrap;
}

.progress-track {
    overflow: hidden;
    flex: 1;
    height: 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.12);
}

.progress-track i {
    display: block;
    width: 4%;
    height: 100%;
    background: linear-gradient(90deg, var(--purple), var(--pink));
}

.player-shell.is-playing .player-screen::before {
    background: rgba(4, 4, 10, 0.12);
}

.watch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
    margin-top: 66px;
    gap: 42px;
}

.content-block {
    padding-bottom: 50px;
}

.content-block h2,
.scene-gallery h2,
.aside-card h2 {
    margin: 6px 0 15px;
    font-size: 2rem;
}

.content-block p {
    color: #b7b8c5;
}

.scene-gallery {
    margin-bottom: 58px;
}

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

.scene-grid figure {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin: 0;
    border-radius: 18px;
    background: var(--panel);
}

.scene-grid figcaption {
    position: absolute;
    right: 14px;
    bottom: 12px;
    left: 14px;
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border-radius: 10px;
    background: rgba(8, 8, 16, 0.76);
    backdrop-filter: blur(8px);
    gap: 10px;
}

.scene-grid figcaption b {
    color: #a89cff;
}

.scene-grid figcaption span {
    font-size: 11px;
    line-height: 1.5;
}

.highlight-block ul {
    display: grid;
    margin: 20px 0 0;
    padding: 0;
    gap: 12px;
    list-style: none;
}

.highlight-block li {
    display: grid;
    grid-template-columns: 110px 1fr;
    padding: 18px;
    border-left: 3px solid var(--purple);
    background: rgba(255, 255, 255, 0.035);
    gap: 20px;
}

.highlight-block li span {
    color: var(--muted);
}

.ending-note {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(120, 92, 255, 0.14), rgba(255, 79, 145, 0.06));
    text-align: center;
}

.ending-note > span {
    color: var(--pink);
    font-size: 11px;
    letter-spacing: 0.2em;
}

.ending-note h2 {
    margin: 7px 0 8px;
}

.ending-note p {
    margin: 0;
    color: var(--muted);
}

.watch-aside {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
}

.aside-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--panel);
}

.aside-card h2 {
    font-size: 19px;
}

.aside-card p {
    color: var(--muted);
    font-size: 13px;
}

.favorite-button {
    width: 100%;
    min-height: 44px;
    margin-top: 10px;
    border: 1px solid #514598;
    border-radius: 12px;
    background: rgba(120, 92, 255, 0.12);
    cursor: pointer;
}

.favorite-button.active {
    border-color: var(--pink);
    background: rgba(255, 79, 145, 0.12);
}

.info-card dl {
    display: grid;
    grid-template-columns: 1fr auto;
    margin: 0;
    gap: 10px;
}

.info-card dt,
.info-card dd {
    margin: 0;
    font-size: 12px;
}

.info-card dt {
    color: var(--muted);
}

.prev-next {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 70px;
    gap: 18px;
}

.prev-next a,
.nav-edge {
    display: flex;
    flex-direction: column;
    min-height: 110px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
}

.prev-next a:last-child {
    align-items: flex-end;
    text-align: right;
}

.prev-next small {
    margin-bottom: 6px;
    color: #a99cff;
}

.nav-edge {
    justify-content: center;
    color: #666879;
}

.related-section {
    margin-bottom: 104px;
}
