* {
    box-sizing: border-box;
}

:root {
    --bg: #fff7ed;
    --paper: #ffffff;
    --paper-soft: #fffbeb;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #fed7aa;
    --brand: #f97316;
    --brand-dark: #c2410c;
    --brand-soft: #fb923c;
    --amber: #f59e0b;
    --shadow: 0 20px 45px rgba(124, 45, 18, 0.12);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(251, 146, 60, 0.18), transparent 34rem),
        linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #fff7ed 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(251, 146, 60, 0.22);
    box-shadow: 0 8px 24px rgba(124, 45, 18, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316 58%, #dc2626);
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.32);
}

.brand-text {
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #b45309, #f97316, #dc2626);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.dropdown-panel a {
    display: inline-flex;
    align-items: center;
    padding: 10px 13px;
    color: #374151;
    font-weight: 700;
    border-radius: 999px;
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-dark);
    background: #ffedd5;
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 190px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: 0.2s ease;
}

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

.dropdown-panel a {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 999px;
}

.header-search input {
    width: 210px;
    border: 0;
    outline: 0;
    padding: 9px 4px 9px 12px;
    background: transparent;
}

.header-search button,
.btn {
    border: 0;
    cursor: pointer;
    font-weight: 800;
    border-radius: 999px;
    transition: 0.2s ease;
}

.header-search button {
    padding: 9px 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: #ffedd5;
    color: #9a3412;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.25rem;
}

.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: center;
    gap: 48px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100%;
    max-width: none;
    margin-left: calc((100% - 100vw) / 2);
    object-fit: cover;
    filter: blur(18px) saturate(1.15);
    transform: scale(1.08);
    opacity: 0.38;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    background:
        radial-gradient(circle at 78% 24%, rgba(245, 158, 11, 0.35), transparent 22rem),
        linear-gradient(115deg, rgba(24, 12, 4, 0.95), rgba(124, 45, 18, 0.82) 46%, rgba(249, 115, 22, 0.42));
}

.hero-content,
.hero-poster {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #ffffff;
    padding: 92px 0;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f97316;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content .eyebrow {
    color: #fed7aa;
}

.hero h1 {
    max-width: 760px;
    margin: 16px 0;
    font-size: clamp(2.6rem, 7vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.08em;
}

.hero p {
    max-width: 680px;
    color: #ffedd5;
    font-size: 1.18rem;
}

.hero-tags,
.detail-meta,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.detail-meta span,
.movie-meta span {
    padding: 7px 11px;
    color: #7c2d12;
    background: #ffedd5;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
    background: #ffedd5;
    color: #9a3412;
}

.btn.primary {
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316 62%, #dc2626);
    box-shadow: 0 16px 35px rgba(249, 115, 22, 0.3);
}

.btn.ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(10px);
}

.btn.small {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 0.92rem;
}

.btn.block {
    width: 100%;
}

.btn:hover,
.header-search button:hover {
    transform: translateY(-2px);
}

.hero-poster {
    justify-self: end;
    width: min(360px, 100%);
    aspect-ratio: 3 / 4;
    padding: 12px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(10px);
}

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

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

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

.hero-dot.active {
    width: 34px;
    background: #ffffff;
}

.stats-strip {
    width: min(1100px, calc(100% - 32px));
    margin: -44px auto 52px;
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #fed7aa;
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.stats-strip div {
    padding: 16px;
    text-align: center;
    border-radius: 18px;
    background: #fff7ed;
}

.stats-strip strong {
    display: block;
    color: var(--brand-dark);
    font-size: 1.7rem;
    line-height: 1;
}

.stats-strip span {
    color: var(--muted);
    font-size: 0.92rem;
}

.section-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0;
}

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

.section-heading h2,
.feature-copy h2,
.page-hero h1 {
    margin: 6px 0 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.section-heading a {
    color: var(--brand-dark);
    font-weight: 900;
}

.two-col-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.feature-copy,
.rank-panel,
.prose-card,
.detail-card,
.side-card,
.category-overview-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #fed7aa;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-copy {
    padding: 36px;
}

.feature-copy p,
.page-hero p,
.category-overview-card p,
.prose-card p {
    color: var(--muted);
}

.rank-panel {
    overflow: hidden;
    padding: 10px;
}

.rank-row {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 16px;
}

.rank-row:hover {
    background: #fff7ed;
}

.rank-num {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    font-weight: 900;
}

.rank-title {
    font-weight: 900;
}

.rank-year {
    color: var(--muted);
    font-size: 0.9rem;
}

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

.category-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 24px;
    color: #ffffff;
    box-shadow: var(--shadow);
    background: #7c2d12;
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    transition: 0.3s ease;
}

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

.category-card div {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.category-card strong {
    display: block;
    font-size: 1.35rem;
}

.category-card span,
.category-card p {
    color: #ffedd5;
    margin: 4px 0 0;
    font-size: 0.9rem;
}

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

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

.movie-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(124, 45, 18, 0.09);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(124, 45, 18, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fef3c7, #fdba74);
}

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

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

.play-float {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    opacity: 0;
    color: #ffffff;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.86);
    transform: translate(-50%, -50%) scale(0.9);
    transition: 0.2s ease;
}

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

.rank-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #ffffff;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626, #f97316);
    box-shadow: 0 10px 22px rgba(220, 38, 38, 0.32);
}

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

.movie-title {
    display: -webkit-box;
    min-height: 2.7em;
    overflow: hidden;
    color: #111827;
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-title:hover {
    color: var(--brand-dark);
}

.movie-line {
    display: -webkit-box;
    min-height: 3em;
    margin: 8px 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.92rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    gap: 6px;
}

.movie-meta span {
    padding: 4px 8px;
    font-size: 0.78rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.tag-row span {
    padding: 4px 8px;
    color: #9a3412;
    background: #ffedd5;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.tag-row.large span {
    padding: 6px 10px;
    font-size: 0.92rem;
}

.gradient-block {
    width: min(1220px, calc(100% - 24px));
    padding: 32px;
    margin-top: 34px;
    border-radius: 34px;
    background: linear-gradient(135deg, #f59e0b, #f97316 58%, #9a3412);
    box-shadow: var(--shadow);
}

.section-heading.light,
.section-heading.light a,
.section-heading.light .section-kicker {
    color: #ffffff;
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    padding: 54px;
    overflow: hidden;
    border: 1px solid #fed7aa;
    border-radius: 34px;
    background:
        radial-gradient(circle at right top, rgba(249, 115, 22, 0.26), transparent 24rem),
        linear-gradient(135deg, #ffffff, #fff7ed);
    box-shadow: var(--shadow);
}

.page-hero.slim {
    padding: 46px;
}

.breadcrumb {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--brand-dark);
    font-weight: 900;
}

.filter-bar {
    position: sticky;
    top: 86px;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 160px 160px auto;
    gap: 10px;
    margin-bottom: 22px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #fed7aa;
    border-radius: 22px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.filter-bar.wide {
    grid-template-columns: minmax(280px, 1fr) 140px 160px 160px auto;
}

.filter-bar input,
.filter-bar select {
    min-height: 42px;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 0 12px;
    outline: none;
    background: #fff7ed;
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    color: #9a3412;
    font-weight: 900;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 20px;
    padding: 18px;
}

.category-cover {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 3 / 4;
    background: #ffedd5;
}

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

.category-overview-card h2 {
    margin: 4px 0;
    font-size: 1.5rem;
}

.sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.sample-links a {
    padding: 6px 10px;
    color: #9a3412;
    background: #ffedd5;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
}

.detail-crumbs {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--muted);
}

.detail-crumbs a {
    color: var(--brand-dark);
    font-weight: 800;
}

.detail-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 22px auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #000000;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-cover-button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    transform: translate(-50%, -50%);
    border: 0;
    padding: 14px 22px;
    color: #ffffff;
    background: rgba(249, 115, 22, 0.92);
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.player-cover-button.is-hidden {
    display: none;
}

.detail-card {
    margin-top: 24px;
    padding: 30px;
}

.detail-card h1 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.detail-one-line {
    color: #9a3412;
    font-size: 1.15rem;
    font-weight: 800;
}

.detail-card h2 {
    margin-top: 28px;
    font-size: 1.4rem;
}

.detail-card p {
    color: #4b5563;
}

.detail-side {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.side-card {
    padding: 18px;
}

.poster-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 14px;
}

.info-list {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px 12px;
    margin: 0;
}

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

.info-list dd {
    margin: 0;
    font-weight: 800;
}

.related-wrap {
    margin-top: 10px;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid #fed7aa;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-table th,
.ranking-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #ffedd5;
    text-align: left;
    white-space: nowrap;
}

.ranking-table th {
    color: #9a3412;
    background: #fff7ed;
    font-size: 0.92rem;
}

.ranking-table a {
    color: #111827;
    font-weight: 900;
}

.ranking-table a:hover {
    color: var(--brand-dark);
}

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

.sitemap-section {
    padding: 20px;
    border: 1px solid #fed7aa;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.sitemap-section h2 {
    margin-top: 0;
}

.sitemap-section ul {
    columns: 2;
    padding-left: 18px;
}

.sitemap-section li {
    break-inside: avoid;
    margin: 7px 0;
}

.sitemap-section a {
    color: #374151;
}

.sitemap-section span {
    margin-left: 6px;
    color: var(--muted);
    font-size: 0.86rem;
}

.prose-card {
    padding: 34px;
}

.site-footer {
    margin-top: 64px;
    color: #ffedd5;
    background: linear-gradient(180deg, #7c2d12, #431407);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    padding: 42px 0;
}

.footer-logo {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 900;
}

.footer-brand p {
    max-width: 560px;
    color: #fed7aa;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 16px;
    text-align: center;
    color: #fed7aa;
    border-top: 1px solid rgba(254, 215, 170, 0.22);
}

[hidden],
.is-filtered-out {
    display: none !important;
}

@media (max-width: 1080px) {
    .header-search {
        display: none;
    }

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

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

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

    .detail-side {
        position: static;
        grid-template-columns: minmax(220px, 320px) 1fr;
    }
}

@media (max-width: 820px) {
    .header-inner {
        height: auto;
        min-height: 68px;
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0;
    }

    .main-nav.is-open {
        display: flex;
    }

    .nav-dropdown:hover .dropdown-panel,
    .dropdown-panel {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 6px;
    }

    .hero {
        min-height: auto;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-bottom: 72px;
    }

    .hero-content {
        padding: 64px 0 12px;
    }

    .hero-poster {
        justify-self: start;
        width: min(280px, 80vw);
    }

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

    .two-col-feature,
    .category-overview-grid,
    .sitemap-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

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

    .filter-bar,
    .filter-bar.wide {
        position: static;
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 32px 24px;
    }

    .category-overview-card {
        grid-template-columns: 120px 1fr;
    }

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

@media (max-width: 520px) {
    .brand-text {
        font-size: 1.15rem;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-heading {
        display: block;
    }

    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .sitemap-section ul {
        columns: 1;
    }
}
