:root {
    --blue-50: #eff6ff;
    --cyan-50: #ecfeff;
    --teal-50: #f0fdfa;
    --blue-600: #2563eb;
    --cyan-600: #0891b2;
    --teal-600: #0d9488;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --white: #ffffff;
    --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.10);
    --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--slate-900);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 34rem),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f8fafc 100%);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(240, 249, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.82);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

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

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

.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-600), var(--cyan-600));
    box-shadow: 0 12px 22px rgba(37, 99, 235, 0.25);
    transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
    transform: scale(1.08) rotate(-4deg);
}

.brand-text strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--blue-600), var(--cyan-600), var(--teal-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    display: block;
    color: var(--slate-600);
    font-size: 0.76rem;
    margin-top: 2px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.desktop-nav > a,
.nav-dropdown > button {
    border: 0;
    background: transparent;
    color: var(--slate-700);
    font-weight: 700;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover {
    color: var(--blue-600);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 180px;
    display: grid;
    gap: 3px;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--slate-700);
}

.nav-dropdown-menu a:hover {
    color: var(--blue-600);
    background: var(--blue-50);
}

.header-search {
    width: 290px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--slate-200);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 8px 4px 8px 12px;
    background: transparent;
}

.header-search button,
.primary-button,
.filter-button {
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    padding: 10px 18px;
    background: linear-gradient(90deg, var(--blue-600), var(--cyan-600));
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.20);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.primary-button:hover,
.filter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.27);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    background: #fff;
    place-items: center;
    gap: 4px;
    padding: 10px;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--slate-200);
    background: #fff;
    padding: 10px 16px 16px;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: var(--slate-700);
    font-weight: 700;
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0 46px;
    background: linear-gradient(135deg, var(--blue-50), var(--cyan-50) 48%, var(--teal-50));
}

.hero-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(56px);
    opacity: 0.24;
    animation: floatGlow 7s ease-in-out infinite;
}

.hero-glow-left {
    top: 20px;
    left: 6%;
    background: #60a5fa;
}

.hero-glow-right {
    right: 6%;
    bottom: 20px;
    background: #22d3ee;
    animation-delay: 1.8s;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(18px, -16px, 0) scale(1.06);
    }
}

.hero-shell {
    position: relative;
    z-index: 1;
}

.hero-carousel {
    position: relative;
    min-height: 540px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.08fr 0.78fr;
    align-items: center;
    gap: 54px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-bg {
    position: absolute;
    inset: auto 0 0 auto;
    width: 58%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: blur(8px) saturate(1.2);
    mask-image: linear-gradient(90deg, transparent, #000);
    z-index: -1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--blue-600);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 0 0 20px;
    font-size: clamp(2.6rem, 7vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
    background: linear-gradient(90deg, var(--blue-600), var(--cyan-600), var(--teal-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 640px;
    margin: 0 0 24px;
    font-size: 1.18rem;
    color: var(--slate-700);
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue-600);
    font-size: 0.82rem;
    font-weight: 800;
}

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

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 10px 18px;
    color: var(--blue-600);
    background: #fff;
    border: 2px solid rgba(37, 99, 235, 0.16);
    font-weight: 900;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ghost-button:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.34);
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 34px;
    overflow: hidden;
    aspect-ratio: 3 / 4.1;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(8, 145, 178, 0.14));
}

.hero-poster:hover {
    transform: rotate(0deg) translateY(-6px);
}

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

.hero-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.hero-dot {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.18);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 56px;
    background: linear-gradient(90deg, var(--blue-600), var(--cyan-600));
}

.hero-category-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.hero-category-strip a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-card);
    color: var(--slate-700);
    font-weight: 900;
    transition: transform 0.2s ease, color 0.2s ease;
}

.hero-category-strip a:hover {
    transform: translateY(-3px);
    color: var(--blue-600);
}

.stats-section,
.content-section {
    padding: 50px 0;
}

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

.stat-card {
    padding: 24px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.72);
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 2.35rem;
    line-height: 1;
    color: var(--blue-600);
}

.stat-card span {
    color: var(--slate-600);
    font-weight: 800;
}

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

.section-heading h1,
.section-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    color: var(--slate-600);
    max-width: 760px;
}

.section-more {
    color: var(--blue-600);
    font-weight: 900;
    white-space: nowrap;
}

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.72);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.05;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(8, 145, 178, 0.08));
}

.poster-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.type-badge,
.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(15, 23, 42, 0.74);
    color: #fff;
    font-weight: 900;
    font-size: 0.78rem;
    backdrop-filter: blur(10px);
}

.rank-badge {
    left: auto;
    right: 12px;
    background: linear-gradient(135deg, #f97316, #facc15);
}

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(37, 99, 235, 0.86);
    transform: translate(-50%, -50%) scale(0.78);
    opacity: 0;
    transition: all 0.25s ease;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32);
}

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

.movie-card-body {
    padding: 16px;
}

.movie-card-body h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.35;
}

.movie-card-body h3 a:hover {
    color: var(--blue-600);
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 3.05em;
    margin: 0 0 12px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--slate-600);
    font-size: 0.92rem;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--slate-500);
    font-size: 0.82rem;
    font-weight: 800;
}

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

.category-card {
    position: relative;
    min-height: 210px;
    padding: 24px;
    border-radius: var(--radius-md);
    color: var(--slate-900);
    background: #fff;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background: linear-gradient(135deg, var(--blue-600), var(--cyan-600));
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.14);
}

.category-icon {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 1.5rem;
}

.category-card strong,
.category-card em,
.category-card p {
    position: relative;
    z-index: 1;
    display: block;
}

.category-card strong {
    margin-top: 16px;
    font-size: 1.3rem;
}

.category-card em {
    margin-top: 4px;
    color: var(--blue-600);
    font-style: normal;
    font-weight: 900;
}

.category-card p {
    margin: 12px 0 0;
    color: var(--slate-600);
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 12px;
    margin: 0 0 28px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.72);
}

.filter-panel input,
.filter-panel select {
    min-height: 46px;
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    padding: 0 14px;
    outline: 0;
    background: #fff;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.no-results {
    display: none;
    padding: 28px;
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--slate-600);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.no-results.is-visible {
    display: block;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 76px 96px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.72);
    transition: transform 0.2s ease;
}

.ranking-item:hover {
    transform: translateX(4px);
}

.ranking-number {
    font-size: 1.5rem;
    font-weight: 950;
    color: var(--blue-600);
    text-align: center;
}

.ranking-thumb {
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(8, 145, 178, 0.08));
}

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

.ranking-copy h3 {
    margin: 0 0 6px;
    font-size: 1.12rem;
}

.ranking-copy p {
    margin: 0;
    color: var(--slate-600);
}

.ranking-score {
    display: grid;
    place-items: center;
    min-width: 74px;
    min-height: 54px;
    border-radius: 16px;
    color: var(--blue-600);
    background: var(--blue-50);
    font-size: 1.3rem;
    font-weight: 950;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 26px auto 0;
    color: var(--slate-500);
    font-weight: 800;
    font-size: 0.9rem;
}

.breadcrumb a:hover {
    color: var(--blue-600);
}

.detail-hero {
    padding: 34px 0 50px;
    background: linear-gradient(135deg, var(--blue-50), #fff 48%, var(--cyan-50));
}

.detail-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 42px;
    align-items: center;
}

.detail-poster {
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 3 / 4.1;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.20);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(8, 145, 178, 0.08));
}

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

.detail-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.detail-copy .lead {
    margin: 0 0 20px;
    color: var(--slate-700);
    font-size: 1.14rem;
}

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

.detail-meta span {
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--slate-700);
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
    font-weight: 900;
}

.player-section {
    padding: 48px 0;
}

.player-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
    aspect-ratio: 16 / 9;
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.42), rgba(2, 6, 23, 0.52));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-start span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-600), var(--cyan-600));
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.40);
    font-size: 2rem;
}

.player-start strong {
    display: block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.player-start.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.detail-panel,
.related-panel {
    padding: 24px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.72);
}

.detail-panel h2,
.related-panel h2 {
    margin: 0 0 14px;
    font-size: 1.35rem;
}

.detail-panel p {
    margin: 0 0 16px;
    color: var(--slate-700);
}

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

.related-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 16px;
    transition: background 0.2s ease;
}

.related-item:hover {
    background: var(--slate-100);
}

.related-item img {
    width: 86px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(8, 145, 178, 0.08));
}

.related-item strong {
    display: block;
    line-height: 1.3;
}

.related-item span {
    color: var(--slate-500);
    font-size: 0.86rem;
}

.site-footer {
    margin-top: 60px;
    padding: 54px 0 26px;
    color: var(--slate-300);
    background: linear-gradient(135deg, var(--slate-950), var(--slate-900));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 34px;
}

.footer-brand {
    margin-bottom: 14px;
    color: #fff;
    font-size: 1.2rem;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
}

.site-footer p {
    margin: 0;
    color: var(--slate-300);
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: var(--slate-300);
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.back-to-top {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 10px 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1060px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .mobile-menu-button {
        display: grid;
        margin-left: auto;
    }

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

    .hero-slide,
    .detail-grid,
    .player-layout {
        grid-template-columns: 1fr;
    }

    .hero-poster,
    .detail-poster {
        width: min(100%, 420px);
        margin: 0 auto;
    }

    .hero-category-strip,
    .stats-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .header-inner {
        min-height: 66px;
    }

    .brand-text strong {
        font-size: 1.05rem;
    }

    .brand-text small {
        display: none;
    }

    .hero-section {
        padding-top: 44px;
    }

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

    .hero-slide {
        gap: 26px;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .hero-category-strip,
    .stats-grid,
    .category-grid,
    .movie-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: block;
    }

    .section-more {
        display: inline-block;
        margin-top: 14px;
    }

    .filter-panel {
        grid-template-columns: 1fr;
    }

    .ranking-item {
        grid-template-columns: 46px 76px 1fr;
    }

    .ranking-score {
        grid-column: 2 / 4;
        justify-self: start;
    }

    .detail-copy h1 {
        font-size: 2.25rem;
    }

    .player-start span {
        width: 64px;
        height: 64px;
    }
}
