:root {
    --page-bg: #fff7fb;
    --panel: rgba(255, 255, 255, 0.82);
    --panel-strong: #ffffff;
    --text: #2f2a35;
    --muted: #716a7e;
    --line: rgba(205, 132, 184, 0.24);
    --red: #ef4444;
    --orange: #f97316;
    --pink: #ec4899;
    --purple: #8b5cf6;
    --blue: #60a5fa;
    --shadow: 0 24px 70px rgba(125, 75, 120, 0.18);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 194, 209, 0.58), transparent 34rem),
        radial-gradient(circle at top right, rgba(199, 210, 254, 0.62), transparent 38rem),
        linear-gradient(180deg, #eff6ff 0%, #fff7fb 45%, #faf5ff 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 246, 251, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 16px 45px rgba(145, 85, 120, 0.12);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 10px 24px rgba(239, 68, 68, 0.28);
}

.brand-text {
    font-size: 1.36rem;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    padding: 10px 18px;
    color: #554c5c;
    border-radius: 999px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--pink);
    background: #fff;
    box-shadow: 0 10px 26px rgba(144, 83, 130, 0.16);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: #5c5364;
}

main {
    min-height: 70vh;
}

.hero-carousel {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 660px;
    margin: 32px auto 0;
    padding: 34px;
    overflow: hidden;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.9), rgba(239, 246, 255, 0.92), rgba(250, 245, 255, 0.96));
    box-shadow: var(--shadow);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.46;
    animation: floatBlob 9s ease-in-out infinite;
}

.hero-orb-one {
    top: 46px;
    left: 36px;
    width: 260px;
    height: 260px;
    background: #fecdd3;
}

.hero-orb-two {
    top: 92px;
    right: 54px;
    width: 310px;
    height: 310px;
    background: #fed7aa;
    animation-delay: 1.5s;
}

.hero-orb-three {
    right: 28%;
    bottom: 22px;
    width: 340px;
    height: 340px;
    background: #ddd6fe;
    animation-delay: 3s;
}

.hero-stage {
    position: relative;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
    align-items: center;
    gap: 42px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(28px) scale(0.99);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-bg {
    position: absolute;
    inset: -34px;
    z-index: -1;
    background-position: center;
    background-size: cover;
    opacity: 0.16;
    filter: blur(22px) saturate(1.2);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 247, 251, 0.94), rgba(255, 247, 251, 0.6));
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--pink);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 0;
    font-size: clamp(2.5rem, 7vw, 5.8rem);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.06em;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-movie-title {
    margin-top: 18px !important;
    font-size: clamp(1.35rem, 3.2vw, 2.25rem) !important;
    letter-spacing: -0.03em !important;
}

.hero-copy p:not(.eyebrow) {
    max-width: 660px;
    margin: 22px 0 0;
    color: #5d5666;
    font-size: 1.1rem;
    line-height: 1.9;
}

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

.primary-btn,
.ghost-btn,
.hero-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.hero-search button {
    color: #fff;
    background: linear-gradient(90deg, var(--red), var(--orange));
    box-shadow: 0 16px 34px rgba(239, 68, 68, 0.24);
}

.ghost-btn {
    color: #4f4657;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 30px rgba(120, 80, 120, 0.12);
}

.primary-btn:hover,
.ghost-btn:hover,
.hero-search button:hover {
    transform: translateY(-2px) scale(1.02);
}

.hero-poster {
    position: relative;
    display: block;
    width: min(100%, 380px);
    justify-self: center;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 12px solid rgba(255, 255, 255, 0.82);
    border-radius: 34px;
    box-shadow: 0 30px 80px rgba(78, 50, 90, 0.28);
    transform: rotate(2deg);
}

.hero-poster::after {
    content: "▶";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 12px 26px rgba(239, 68, 68, 0.35);
}

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

.hero-dots {
    position: absolute;
    left: 34px;
    bottom: 34px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(107, 88, 116, 0.24);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: linear-gradient(90deg, var(--red), var(--orange));
}

.hero-search {
    position: absolute;
    right: 34px;
    bottom: 24px;
    width: min(420px, calc(100% - 68px));
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 36px rgba(112, 80, 125, 0.14);
    backdrop-filter: blur(14px);
}

.hero-search input {
    min-width: 0;
    padding: 0 18px;
    border: 0;
    outline: none;
    color: var(--text);
    background: transparent;
}

.content-section {
    width: min(1180px, calc(100% - 32px));
    margin: 42px auto;
}

.soft-panel,
.feature-panel,
.page-hero,
.text-panel,
.info-panel {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.soft-panel {
    padding: 28px;
    border-radius: var(--radius-xl);
}

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

.section-heading h2,
.page-hero h1,
.feature-panel h2,
.text-panel h2,
.info-panel h2 {
    margin: 0;
    color: #24202a;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.section-heading p:not(.eyebrow),
.page-hero p,
.feature-panel p,
.text-panel p,
.info-panel dd,
.info-panel dt {
    color: var(--muted);
    line-height: 1.85;
}

.section-link {
    flex: 0 0 auto;
    color: var(--pink);
    font-weight: 800;
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 40px rgba(111, 72, 116, 0.12);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(111, 72, 116, 0.2);
}

.card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(244, 114, 182, 0.08);
}

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

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

.card-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    background: rgba(0, 0, 0, 0.24);
    transition: opacity 0.24s ease;
}

.movie-card:hover .card-play {
    opacity: 1;
}

.card-body {
    padding: 16px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
}

.card-meta span,
.card-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    color: #7a4866;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 999px;
    background: rgba(252, 231, 243, 0.9);
}

.card-body h3 {
    margin: 0;
    color: #2f2935;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 900;
}

.card-body h3 a:hover {
    color: var(--pink);
}

.card-body p {
    display: -webkit-box;
    min-height: 3.3em;
    margin: 10px 0 14px;
    overflow: hidden;
    color: #716a7c;
    font-size: 0.92rem;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

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

.category-card,
.category-overview-card {
    display: block;
    min-height: 162px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 42px rgba(103, 74, 120, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 58px rgba(103, 74, 120, 0.18);
}

.category-icon {
    display: inline-grid;
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    place-items: center;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.category-card strong,
.category-title {
    display: block;
    margin-bottom: 10px;
    color: #282330;
    font-size: 1.16rem;
    font-weight: 900;
}

.category-card p,
.category-overview-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.category-samples span {
    max-width: 100%;
    padding: 6px 10px;
    overflow: hidden;
    color: #8a496b;
    border-radius: 999px;
    background: #fce7f3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 44px 86px 1fr;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 34px rgba(113, 78, 122, 0.1);
}

.rank-item > span,
.ranking-number {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
    font-weight: 900;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.rank-item img {
    width: 86px;
    height: 56px;
    object-fit: cover;
    border-radius: 14px;
}

.rank-item strong {
    display: block;
    color: #2c2632;
}

.rank-item p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.feature-panel {
    align-self: start;
    padding: 30px;
    border-radius: var(--radius-xl);
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 32px auto 0;
    padding: clamp(32px, 6vw, 72px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 12% 20%, rgba(254, 205, 211, 0.75), transparent 28rem),
        radial-gradient(circle at 88% 10%, rgba(221, 214, 254, 0.82), transparent 30rem),
        rgba(255, 255, 255, 0.78);
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 18px 0 0;
    font-size: 1.08rem;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px;
    gap: 12px;
    margin-bottom: 24px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 35px rgba(113, 78, 122, 0.1);
}

.filter-panel label {
    display: grid;
    gap: 6px;
}

.filter-panel label span {
    color: #87506d;
    font-size: 0.78rem;
    font-weight: 900;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    color: var(--text);
    border: 1px solid rgba(236, 72, 153, 0.18);
    border-radius: 16px;
    outline: none;
    background: #fff;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

.empty-state {
    padding: 36px;
    color: var(--muted);
    text-align: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
}

.breadcrumb {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #73677d;
    font-size: 0.92rem;
}

.breadcrumb a {
    color: var(--pink);
    font-weight: 800;
}

.detail-hero {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(24px, 5vw, 48px);
    display: grid;
    grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
    gap: 34px;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(253, 242, 248, 0.86));
    box-shadow: var(--shadow);
}

.detail-bg {
    position: absolute;
    inset: -30px;
    z-index: -1;
    background-position: center;
    background-size: cover;
    filter: blur(24px) saturate(1.15);
    opacity: 0.18;
}

.detail-poster {
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    box-shadow: 0 28px 66px rgba(78, 50, 90, 0.24);
}

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

.detail-copy {
    align-self: center;
}

.detail-copy h1 {
    margin: 0;
    color: #231f2a;
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.detail-copy p:not(.eyebrow) {
    max-width: 780px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.9;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.player-section {
    scroll-margin-top: 92px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    background: #050507;
    box-shadow: 0 28px 78px rgba(30, 24, 38, 0.32);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    cursor: pointer;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    border-radius: 999px;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 20px 48px rgba(239, 68, 68, 0.38);
}

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

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

.text-panel,
.info-panel {
    padding: 28px;
    border-radius: var(--radius-xl);
}

.text-panel h2,
.info-panel h2 {
    margin-top: 0;
    font-size: 1.65rem;
}

.text-panel p {
    font-size: 1.02rem;
}

.info-panel dl {
    margin: 0;
}

.info-panel dt {
    margin-top: 16px;
    color: #8f4d72;
    font-weight: 900;
}

.info-panel dd {
    margin: 4px 0 0;
}

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

.movie-card-compact {
    display: grid;
    grid-template-columns: 130px 1fr;
}

.movie-card-compact .card-media {
    aspect-ratio: auto;
    min-height: 124px;
}

.movie-card-compact .card-body p,
.movie-card-compact .card-tags {
    display: none;
}

.ranking-card {
    padding-top: 0;
}

.ranking-number {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.site-footer {
    margin-top: 70px;
    padding: 36px 0;
    color: #73677d;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
}

.footer-brand {
    color: var(--pink);
    font-weight: 950;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a:hover {
    color: var(--pink);
}

.footer-inner p {
    margin: 0;
}

@keyframes floatBlob {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(18px, -14px, 0) scale(1.08);
    }
}

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

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

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

    .feature-panel,
    .info-panel {
        max-width: none;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 68px;
        left: 16px;
        right: 16px;
        display: none;
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

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

    .nav-link {
        text-align: center;
    }

    .hero-carousel {
        min-height: 820px;
        padding: 22px;
    }

    .hero-stage {
        min-height: 680px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-poster {
        width: min(72vw, 310px);
        order: -1;
        transform: none;
    }

    .hero-dots {
        left: 22px;
        bottom: 92px;
    }

    .hero-search {
        left: 22px;
        right: 22px;
        bottom: 22px;
        width: auto;
    }

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

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

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

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

@media (max-width: 560px) {
    .nav-shell,
    .content-section,
    .page-hero,
    .breadcrumb,
    .detail-hero,
    .hero-carousel,
    .footer-inner {
        width: min(100% - 20px, 1180px);
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .hero-carousel {
        border-radius: 24px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }

    .hero-search {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

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

    .section-heading {
        display: block;
    }

    .section-link {
        display: inline-flex;
        margin-top: 12px;
    }

    .movie-card-compact {
        grid-template-columns: 112px 1fr;
    }
}
