:root {
    color-scheme: light;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-850: #172033;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-300: #fcd34d;
    --white: #ffffff;
    --shadow-soft: 0 20px 55px rgba(15, 23, 42, 0.14);
    --shadow-amber: 0 18px 40px rgba(245, 158, 11, 0.28);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --max: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, var(--slate-50), var(--slate-100));
    color: var(--slate-800);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--slate-950), var(--slate-850), var(--slate-950));
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.32);
}

.nav-wrap {
    max-width: var(--max);
    height: 76px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--slate-950);
    background: linear-gradient(135deg, var(--amber-300), var(--amber-600));
    box-shadow: 0 0 28px rgba(245, 158, 11, 0.36);
    font-size: 17px;
    font-weight: 900;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    color: var(--white);
    font-size: 22px;
    letter-spacing: 0.02em;
}

.brand-text em {
    color: var(--slate-400);
    font-size: 12px;
    font-style: normal;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.nav-link {
    color: var(--slate-300);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(245, 158, 11, 0.94);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.2);
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.icon-button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    color: var(--slate-200);
    background: rgba(30, 41, 59, 0.88);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.icon-button:hover {
    transform: translateY(-2px);
    background: rgba(51, 65, 85, 0.96);
}

.menu-toggle {
    display: none;
}

.search-panel,
.mobile-nav {
    display: none;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.search-panel.is-open,
.mobile-nav.is-open {
    display: block;
}

.search-panel-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 14px 24px;
}

.site-search {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 16px;
    padding: 14px 16px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.94);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-search::placeholder {
    color: var(--slate-400);
}

.site-search:focus {
    border-color: rgba(245, 158, 11, 0.88);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.mobile-nav {
    padding: 12px 24px 18px;
}

.mobile-nav-link {
    display: block;
    color: var(--slate-200);
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
}

.mobile-nav-link:hover {
    background: rgba(51, 65, 85, 0.9);
}

main {
    min-height: 60vh;
}

.hero-carousel {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: var(--slate-950);
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(245, 158, 11, 0.26), transparent 34%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.05) 48%, rgba(15, 23, 42, 0.88));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 48px));
    margin-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
    color: var(--white);
    padding-top: 40px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber-300);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 14px 0 18px;
    font-size: clamp(42px, 8vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.hero-content p {
    max-width: 680px;
    margin: 0;
    color: var(--slate-200);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.tag-list span {
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 999px;
    padding: 6px 11px;
    color: #92400e;
    background: rgba(254, 243, 199, 0.96);
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    color: var(--white);
    background: rgba(245, 158, 11, 0.22);
    border-color: rgba(245, 158, 11, 0.38);
    backdrop-filter: blur(12px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    box-shadow: var(--shadow-amber);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-3px) scale(1.02);
}

.ghost-button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.ghost-button.light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
}

.hero-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--amber-400);
}

.section-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 56px 24px;
}

.intro-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: -48px;
    position: relative;
    z-index: 8;
    border-radius: var(--radius-xl);
    color: var(--white);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(120, 53, 15, 0.92));
    box-shadow: var(--shadow-soft);
}

.intro-strip h2,
.intro-strip p {
    margin: 0;
}

.intro-strip h2 {
    font-size: 28px;
    letter-spacing: -0.03em;
}

.intro-strip p {
    margin-top: 8px;
    color: var(--slate-300);
}

.inline-search {
    display: flex;
    min-width: min(420px, 100%);
    gap: 10px;
}

.inline-search button {
    border: 0;
    border-radius: 16px;
    padding: 0 18px;
    color: var(--white);
    background: var(--amber-600);
    font-weight: 900;
    cursor: pointer;
}

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

.section-title-row h2,
.page-hero h1,
.detail-copy h1 {
    margin: 6px 0 0;
    color: var(--slate-950);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.text-link {
    color: var(--amber-700);
    font-weight: 900;
}

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

.category-tile {
    position: relative;
    min-height: 158px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 22px;
    color: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-tile::before,
.category-overview-card::before {
    content: "";
    position: absolute;
    inset: -30% auto auto -20%;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    filter: blur(4px);
}

.category-tile:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.category-icon {
    font-size: 30px;
}

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

.category-tile em {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-style: normal;
}

.grad-amber { background: linear-gradient(135deg, #f59e0b, #92400e); }
.grad-blue { background: linear-gradient(135deg, #2563eb, #0f172a); }
.grad-purple { background: linear-gradient(135deg, #7c3aed, #312e81); }
.grad-rose { background: linear-gradient(135deg, #e11d48, #7f1d1d); }
.grad-emerald { background: linear-gradient(135deg, #059669, #064e3b); }
.grad-pink { background: linear-gradient(135deg, #db2777, #831843); }
.grad-slate { background: linear-gradient(135deg, #475569, #020617); }
.grad-orange { background: linear-gradient(135deg, #ea580c, #7c2d12); }
.grad-red { background: linear-gradient(135deg, #dc2626, #450a0a); }
.grad-cyan { background: linear-gradient(135deg, #0891b2, #164e63); }

.movie-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
}

.card-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--slate-900);
}

.card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.movie-card:hover .card-cover img {
    transform: scale(1.08);
}

.card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.72));
}

.play-badge {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%) scale(0.86);
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--amber-700);
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

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

.type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--white);
    background: rgba(245, 158, 11, 0.94);
    font-size: 12px;
    font-weight: 900;
}

.card-body {
    padding: 18px;
}

.card-body h2,
.card-body h3 {
    margin: 0 0 8px;
    color: var(--slate-950);
    font-size: 19px;
    line-height: 1.28;
}

.card-body p {
    min-height: 46px;
    margin: 0 0 12px;
    color: var(--slate-600);
    font-size: 14px;
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--slate-500);
    font-size: 13px;
}

.meta-line span + span::before {
    content: "·";
    margin-right: 8px;
    color: var(--slate-400);
}

.tag-list {
    margin-top: 12px;
}

.tag-list.large span {
    font-size: 13px;
    padding: 8px 12px;
}

.feature-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.35fr;
    gap: 28px;
    align-items: stretch;
}

.feature-panel {
    border-radius: var(--radius-xl);
    padding: 38px;
    color: var(--white);
    background:
        radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.34), transparent 30%),
        linear-gradient(145deg, var(--slate-950), #78350f);
    box-shadow: var(--shadow-soft);
}

.feature-panel h2 {
    margin: 10px 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.feature-panel p {
    color: var(--slate-300);
    margin-bottom: 28px;
}

.tight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ranking-section {
    padding-top: 28px;
}

.mini-rank-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mini-rank {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}

.mini-rank span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    font-weight: 900;
}

.mini-rank strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-rank em {
    color: var(--amber-700);
    font-style: normal;
    font-weight: 900;
}

.page-hero {
    color: var(--white);
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.24), transparent 30%),
        linear-gradient(135deg, var(--slate-950), #78350f 58%, var(--slate-950));
}

.page-hero > div {
    max-width: var(--max);
    margin: 0 auto;
    padding: 88px 24px;
}

.page-hero h1 {
    color: var(--white);
    max-width: 820px;
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--slate-200);
    font-size: 18px;
}

.compact-hero > div {
    padding-top: 70px;
    padding-bottom: 64px;
}

.category-overview-list {
    display: grid;
    gap: 22px;
}

.category-overview-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
    gap: 24px;
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.category-overview-copy,
.category-overview-samples {
    position: relative;
    z-index: 1;
}

.category-overview-copy span {
    font-weight: 900;
    color: rgba(255, 255, 255, 0.72);
}

.category-overview-copy h2 {
    margin: 10px 0;
    font-size: 34px;
    line-height: 1.1;
}

.category-overview-copy p {
    color: rgba(255, 255, 255, 0.82);
}

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

.compact-card {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.compact-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.compact-card span {
    display: block;
    padding: 12px;
}

.compact-card strong,
.compact-card em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-card em {
    color: rgba(255, 255, 255, 0.68);
    font-style: normal;
    font-size: 12px;
}

.list-toolbar {
    padding-bottom: 18px;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}

.list-toolbar .inline-search,
.intro-strip .inline-search {
    flex: 1;
    max-width: 560px;
}

.list-toolbar .site-search,
.intro-strip .site-search {
    color: var(--slate-900);
    background: var(--white);
    border-color: rgba(148, 163, 184, 0.42);
}

.list-toolbar .site-search::placeholder,
.intro-strip .site-search::placeholder {
    color: var(--slate-500);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--slate-700);
    background: var(--white);
    cursor: pointer;
    font-weight: 800;
}

.filter-chip.active,
.filter-chip:hover {
    color: var(--white);
    border-color: var(--amber-500);
    background: var(--amber-600);
}

.all-category-links {
    padding-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.all-category-links a {
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--slate-800), var(--slate-950));
    font-weight: 800;
}

.empty-state {
    display: none;
    margin: 28px 0 0;
    padding: 26px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--slate-600);
    background: var(--white);
}

.empty-state.is-visible {
    display: block;
}

.ranking-hero {
    background:
        radial-gradient(circle at 20% 15%, rgba(251, 191, 36, 0.28), transparent 32%),
        linear-gradient(135deg, #020617, #1e1b4b 48%, #78350f);
}

.ranking-list {
    display: grid;
    gap: 14px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 62px 112px 1fr 100px;
    align-items: center;
    gap: 18px;
    padding: 14px;
}

.rank-num {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    font-weight: 900;
}

.rank-cover {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 16 / 10;
    background: var(--slate-900);
}

.rank-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-info h2 {
    margin: 0 0 6px;
    font-size: 20px;
    color: var(--slate-950);
}

.rank-info p {
    margin: 0 0 8px;
    color: var(--slate-600);
}

.rank-score {
    text-align: center;
    color: var(--amber-700);
}

.rank-score strong,
.rank-score span {
    display: block;
}

.rank-score strong {
    font-size: 28px;
    line-height: 1;
}

.rank-score span {
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 900;
}

.detail-hero {
    min-height: 560px;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.detail-hero-inner {
    padding-top: 38px;
    padding-bottom: 56px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 26px;
    color: var(--slate-300);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: var(--amber-300);
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 38px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    background: var(--slate-950);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-copy h1 {
    max-width: 860px;
    color: var(--white);
    font-size: clamp(38px, 6vw, 68px);
}

.detail-one-line {
    max-width: 860px;
    margin: 18px 0;
    color: var(--slate-200);
    font-size: 20px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.detail-meta span {
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.detail-copy .primary-button {
    margin-top: 28px;
}

.player-section {
    padding-top: 40px;
    padding-bottom: 20px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--slate-950);
    box-shadow: 0 30px 90px rgba(2, 6, 23, 0.22);
}

.movie-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--slate-950);
}

.play-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--white);
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2), rgba(2, 6, 23, 0.58));
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-cover span {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--slate-950);
    background: linear-gradient(135deg, var(--amber-300), var(--amber-600));
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.1), var(--shadow-amber);
    font-size: 34px;
    font-weight: 900;
}

.play-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
}

.content-card,
.side-card {
    border-radius: var(--radius-xl);
    padding: 28px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.content-card h2,
.side-card h2 {
    margin: 0 0 14px;
    color: var(--slate-950);
    font-size: 26px;
    letter-spacing: -0.03em;
}

.content-card p {
    color: var(--slate-700);
    font-size: 17px;
}

.side-card dl {
    margin: 0;
}

.side-card dt {
    margin-top: 14px;
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 900;
}

.side-card dd {
    margin: 4px 0 0;
    color: var(--slate-900);
    font-weight: 800;
}

.site-footer {
    margin-top: 42px;
    color: var(--slate-300);
    background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-grid {
    max-width: var(--max);
    margin: 0 auto;
    padding: 54px 24px 34px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
    gap: 30px;
}

.footer-brand p,
.site-footer p {
    color: var(--slate-400);
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li + li {
    margin-top: 9px;
}

.site-footer a:hover {
    color: var(--amber-300);
}

.footer-bottom {
    max-width: var(--max);
    margin: 0 auto;
    padding: 20px 24px 30px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: var(--slate-400);
    font-size: 14px;
}

@media (max-width: 1120px) {
    .category-grid,
    .movie-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-grid;
    }

    .nav-wrap {
        height: 68px;
    }

    .hero-carousel {
        min-height: 590px;
    }

    .hero-content {
        margin-left: 24px;
        padding-top: 32px;
    }

    .intro-strip,
    .list-toolbar,
    .section-title-row,
    .footer-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .category-grid,
    .movie-grid,
    .tight-grid,
    .mini-rank-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-layout,
    .detail-content,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .category-overview-samples {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .detail-hero-grid {
        grid-template-columns: 220px 1fr;
    }

    .ranking-row {
        grid-template-columns: 50px 92px 1fr;
    }

    .rank-score {
        grid-column: 3;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .brand-text strong {
        font-size: 18px;
    }

    .brand-text em {
        display: none;
    }

    .nav-wrap,
    .section-wrap,
    .page-hero > div {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-carousel {
        min-height: 560px;
    }

    .hero-content {
        width: calc(100% - 32px);
        margin-left: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-button,
    .ghost-button {
        width: 100%;
    }

    .intro-strip {
        margin-left: 16px;
        margin-right: 16px;
    }

    .inline-search {
        flex-direction: column;
    }

    .inline-search button {
        min-height: 46px;
    }

    .category-grid,
    .movie-grid,
    .category-overview-samples {
        grid-template-columns: 1fr;
    }

    .movie-grid {
        gap: 18px;
    }

    .detail-hero-grid {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        max-width: 260px;
    }

    .ranking-row {
        grid-template-columns: 42px 78px 1fr;
        gap: 12px;
    }

    .rank-info p,
    .rank-info .meta-line {
        display: none;
    }

    .rank-info h2 {
        font-size: 16px;
    }

    .play-cover span {
        width: 72px;
        height: 72px;
        font-size: 26px;
    }
}
