:root {
    --bg: #fff7ed;
    --paper: #ffffff;
    --paper-soft: rgba(255, 255, 255, 0.86);
    --text: #1f2937;
    --muted: #6b7280;
    --line: #fed7aa;
    --primary: #d97706;
    --primary-dark: #92400e;
    --accent: #f97316;
    --shadow: 0 20px 55px rgba(146, 64, 14, 0.16);
    --radius: 24px;
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, 0.20), transparent 28rem),
        linear-gradient(180deg, #fff7ed 0%, #fff 42%, #fff7ed 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

.wrap,
.nav-wrap,
.footer-grid,
.footer-bottom {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 237, 213, 0.96), rgba(255, 247, 237, 0.96));
    border-bottom: 1px solid rgba(251, 146, 60, 0.22);
    box-shadow: 0 10px 30px rgba(146, 64, 14, 0.10);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(217, 119, 6, 0.28);
}

.brand-copy {
    display: grid;
    line-height: 1.08;
}

.brand-title {
    font-size: 1.35rem;
    color: var(--primary-dark);
    letter-spacing: 0.02em;
}

.brand-subtitle {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 10px 14px;
    color: #4b5563;
    border-radius: 999px;
    font-weight: 700;
    transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
    background: rgba(251, 191, 36, 0.20);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(251, 191, 36, 0.20);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--primary-dark);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    background: #111827;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.04);
}

.hero-shade,
.detail-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.70) 45%, rgba(146, 64, 14, 0.30) 100%),
        radial-gradient(circle at 74% 36%, rgba(251, 191, 36, 0.34), transparent 22rem);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - 32px));
    min-height: 680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 48px;
    padding: 72px 0;
}

.hero-copy {
    max-width: 720px;
    color: #fff;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f59e0b;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero-copy h1 {
    margin: 14px 0 18px;
    font-size: clamp(2.4rem, 6vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 660px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.8;
}

.hero-tags .tag {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.18);
}

.hero-actions,
.detail-info .btn {
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.34);
}

.btn.ghost {
    color: #fff;
    margin-left: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.btn.wide {
    width: 100%;
    color: var(--primary-dark);
    background: #ffedd5;
}

.hero-poster {
    position: relative;
    min-height: 500px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 36px 80px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

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

.hero-poster span {
    position: absolute;
    inset: auto 24px 24px auto;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: #fff;
    background: rgba(17, 24, 39, 0.30);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.hero-prev {
    left: max(20px, calc((100% - var(--max)) / 2 - 64px));
}

.hero-next {
    right: max(20px, calc((100% - var(--max)) / 2 - 64px));
}

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

.hero-dot {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.hero-dot.active {
    background: #f59e0b;
}

.hero-quick {
    position: absolute;
    left: 50%;
    bottom: 82px;
    z-index: 8;
    width: min(var(--max), calc(100% - 32px));
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
}

.hero-quick a {
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    font-weight: 800;
}

.page-section {
    padding: 54px 0;
}

.home-search {
    margin-top: -56px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
    gap: 22px;
    align-items: stretch;
}

.intro-panel,
.filter-panel,
.content-card,
.rank-panel,
.category-overview-card,
.detail-info {
    background: var(--paper-soft);
    border: 1px solid rgba(251, 146, 60, 0.18);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.intro-panel,
.filter-panel {
    padding: 26px;
}

.intro-panel h2,
.section-head h2,
.rank-panel h2,
.content-card h2,
.category-overview-card h2,
.detail-info h1 {
    margin: 8px 0 10px;
    color: #1f2937;
    letter-spacing: -0.03em;
}

.intro-panel h2 {
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    line-height: 1.12;
}

.intro-panel p,
.section-head p,
.rank-panel p,
.category-overview-card p,
.content-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

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

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.search-box span {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 900;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

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

.select-row select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: #4b5563;
    background: #fff;
    outline: 0;
}

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

.section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 900;
}

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

.movie-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(251, 146, 60, 0.18);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(146, 64, 14, 0.10);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 28px 58px rgba(146, 64, 14, 0.18);
}

.movie-card.is-hidden {
    display: none;
}

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

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

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

.play-float,
.rank-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.play-float {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.rank-badge {
    left: 12px;
    top: 12px;
    min-height: 28px;
    padding: 0 10px;
    color: #fff;
    background: rgba(17, 24, 39, 0.72);
    border-radius: 999px;
    font-size: 0.78rem;
    backdrop-filter: blur(10px);
}

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

.movie-meta-line,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #9a3412;
    font-size: 0.8rem;
    font-weight: 800;
}

.movie-meta-line span,
.detail-meta span {
    padding: 4px 8px;
    background: #ffedd5;
    border-radius: 999px;
}

.movie-card h2 {
    margin: 12px 0 8px;
    font-size: 1.06rem;
    line-height: 1.35;
}

.movie-card h2 a:hover,
.category-overview-card h2 a:hover,
.sample-links a:hover,
.footer-links a:hover {
    color: var(--primary);
}

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

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

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    color: #9a3412;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

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

.category-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    padding: 20px;
    color: #fff;
    background: linear-gradient(135deg, #7c2d12, #d97706 55%, #f97316);
    border-radius: 26px;
    box-shadow: 0 20px 44px rgba(146, 64, 14, 0.20);
}

.category-name {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
}

.category-intro {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 0.92rem;
}

.category-thumbs {
    position: absolute;
    right: -12px;
    bottom: -18px;
    display: flex;
    gap: 8px;
    transform: rotate(-8deg);
    opacity: 0.50;
}

.category-thumbs img {
    width: 76px;
    height: 104px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

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

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

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

.compact-card h2 {
    font-size: 0.98rem;
}

.rank-panel {
    padding: 22px;
}

.sticky-panel {
    position: sticky;
    top: 96px;
}

.side-list {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.side-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 10px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 16px;
}

.side-rank {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    font-weight: 900;
    font-size: 0.78rem;
}

.side-title {
    overflow: hidden;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.side-meta {
    color: var(--muted);
    font-size: 0.82rem;
}

.sub-hero {
    position: relative;
    padding: 88px 0 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(251, 191, 36, 0.36), transparent 21rem),
        linear-gradient(135deg, #111827 0%, #7c2d12 62%, #d97706 100%);
    color: #fff;
}

.sub-hero h1 {
    max-width: 820px;
    margin: 12px 0 16px;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.sub-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.breadcrumb a:hover {
    color: #fbbf24;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
}

.category-cover {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    min-height: 180px;
}

.category-cover img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
}

.sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.sample-links a {
    padding: 8px 12px;
    color: #9a3412;
    background: #ffedd5;
    border-radius: 999px;
    font-weight: 800;
}

.category-movie-grid,
.search-grid {
    margin-top: 24px;
}

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

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

.detail-wrap {
    position: relative;
    z-index: 2;
    padding: 44px 0 70px;
    color: #fff;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
    gap: 28px;
    align-items: center;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 30px;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.45);
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: rgba(17, 24, 39, 0.28);
}

.player-overlay.is-hidden {
    display: none;
}

.player-overlay img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.74;
}

.big-play {
    position: relative;
    z-index: 4;
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.44);
    cursor: pointer;
    font-size: 2rem;
    text-indent: 4px;
}

.detail-info {
    padding: 28px;
    color: var(--text);
}

.detail-info h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.05;
}

.detail-one-line {
    color: #4b5563;
    font-size: 1.04rem;
    line-height: 1.85;
}

.detail-meta {
    margin: 18px 0;
}

.detail-tags {
    margin-bottom: 8px;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.content-card {
    padding: 28px;
}

.content-card p {
    color: #374151;
    font-size: 1.02rem;
}

.site-footer {
    margin-top: 46px;
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937 56%, #111827);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 30px;
    padding: 48px 0;
}

.footer-brand {
    color: #fff;
    font-size: 1.2rem;
}

.site-footer p {
    color: #cbd5e1;
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 1.05rem;
}

.footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: #d1d5db;
}

.footer-bottom {
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: #9ca3af;
    font-size: 0.92rem;
}

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

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

    .hero-content,
    .detail-grid,
    .home-search,
    .split-section,
    .ranking-layout {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

    .sticky-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .nav-wrap {
        min-height: 68px;
    }

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

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: rgba(255, 247, 237, 0.98);
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }

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

    .nav-link {
        padding: 12px 14px;
    }

    .hero-stage,
    .hero-content {
        min-height: 590px;
    }

    .hero-content {
        padding: 54px 0 118px;
    }

    .hero-copy h1 {
        font-size: clamp(2.2rem, 12vw, 4rem);
    }

    .hero-arrow {
        display: none;
    }

    .hero-quick {
        bottom: 72px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .btn.ghost {
        margin: 12px 0 0;
    }

    .hero-actions {
        display: grid;
        justify-items: start;
    }

    .page-section {
        padding: 38px 0;
    }

    .section-head {
        display: grid;
    }

    .select-row {
        grid-template-columns: 1fr;
    }

    .movie-grid,
    .mini-grid,
    .ranking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .movie-card p {
        font-size: 0.86rem;
    }

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

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

    .category-cover {
        grid-template-columns: repeat(4, 1fr);
    }

    .detail-hero {
        min-height: auto;
    }

    .detail-wrap {
        padding: 28px 0 46px;
    }

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

    .detail-info {
        padding: 22px;
    }

    .player-shell {
        border-radius: 22px;
    }

    .big-play {
        width: 72px;
        height: 72px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 36px 0;
    }
}

@media (max-width: 470px) {
    .movie-grid,
    .mini-grid,
    .ranking-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage,
    .hero-content {
        min-height: 640px;
    }

    .home-search {
        margin-top: -42px;
    }
}
