* {
    box-sizing: border-box;
}

:root {
    --page-bg: #fff7ed;
    --card-bg: rgba(255, 255, 255, 0.88);
    --text: #1f2937;
    --muted: #6b7280;
    --soft: #fef3c7;
    --orange: #f97316;
    --pink: #ec4899;
    --yellow: #facc15;
    --line: rgba(249, 115, 22, 0.2);
    --shadow: 0 20px 50px rgba(249, 115, 22, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(251, 146, 60, 0.18), transparent 32rem),
        radial-gradient(circle at 90% 10%, rgba(236, 72, 153, 0.16), transparent 30rem),
        linear-gradient(135deg, #fff7ed 0%, #fdf2f8 48%, #fefce8 100%);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 247, 237, 0.96), rgba(253, 242, 248, 0.96), rgba(254, 252, 232, 0.96));
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.13);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.18);
}

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

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

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 14px 28px rgba(236, 72, 153, 0.25);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text strong,
.footer-brand strong {
    font-size: 24px;
    line-height: 1;
    background: linear-gradient(90deg, #ea580c, #db2777, #ca8a04);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    color: var(--muted);
    font-size: 12px;
}

.nav-links {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.nav-link,
.mobile-link {
    color: #374151;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 14px;
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #ea580c;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.14);
}

.header-search,
.mobile-search,
.hero-search,
.inline-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.hero-search input,
.inline-search input {
    width: 230px;
    border: 2px solid rgba(251, 146, 60, 0.34);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 11px 15px;
    outline: 0;
    transition: 0.25s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.inline-search input:focus {
    border-color: rgba(236, 72, 153, 0.65);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.11);
}

.header-search button,
.mobile-search button,
.hero-search button,
.inline-search button,
.primary-btn,
.ghost-btn,
.ranking-link {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    padding: 12px 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-search button,
.mobile-search button,
.hero-search button,
.inline-search button,
.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 16px 28px rgba(236, 72, 153, 0.24);
}

.ghost-btn,
.ranking-link {
    color: #ea580c;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.inline-search button:hover,
.primary-btn:hover,
.ghost-btn:hover,
.ranking-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(236, 72, 153, 0.26);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: #374151;
    border-radius: 999px;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

.mobile-panel.open {
    display: block;
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.mobile-brand {
    display: none;
}

main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.62fr);
    gap: 24px;
    min-height: 650px;
    padding: 34px 0 18px;
}

.hero-stage {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    min-height: 610px;
    box-shadow: var(--shadow);
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: end;
    gap: 30px;
    padding: 58px;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 0.65s ease, transform 0.65s ease;
    pointer-events: none;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(2px) saturate(1.12);
    transform: scale(1.05);
    opacity: 0.62;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.38) 58%, rgba(17, 24, 39, 0.82)),
        radial-gradient(circle at 20% 25%, rgba(249, 115, 22, 0.5), transparent 32%),
        radial-gradient(circle at 70% 20%, rgba(236, 72, 153, 0.44), transparent 30%);
}

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

.eyebrow,
.section-kicker {
    margin: 0 0 10px;
    color: #fb923c;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 900;
}

.hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-summary {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.9;
}

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

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

.hero-tags span,
.tag-row span,
.filter-chip {
    color: #be185d;
    background: rgba(253, 242, 248, 0.88);
    border: 1px solid rgba(236, 72, 153, 0.16);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 800;
}

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

.hero-poster {
    align-self: center;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
    transform: rotate(3deg);
}

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

.hero-dots {
    position: absolute;
    z-index: 5;
    left: 58px;
    bottom: 30px;
    display: flex;
    gap: 9px;
}

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

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

.hero-panel,
.page-hero,
.category-card,
.rank-panel,
.text-panel,
.player-shell,
.detail-hero {
    background: var(--card-bg);
    border: 1px solid rgba(249, 115, 22, 0.16);
    border-radius: 34px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-panel {
    padding: 34px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-panel h2,
.page-hero h1,
.section-head h2,
.text-panel h2,
.detail-info h1 {
    margin: 0;
    color: #1f2937;
    letter-spacing: -0.04em;
}

.hero-panel h2 {
    font-size: 35px;
    line-height: 1.12;
}

.hero-panel p:not(.section-kicker) {
    color: var(--muted);
    line-height: 1.85;
}

.hero-search {
    margin: 18px 0;
}

.hero-search input {
    width: min(100%, 310px);
}

.hero-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.category-chip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.1);
    transition: 0.25s ease;
}

.category-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(236, 72, 153, 0.18);
}

.category-chip span {
    color: #db2777;
    font-size: 12px;
    font-weight: 900;
}

.ranking-link {
    display: inline-flex;
    justify-content: center;
    margin-top: 18px;
}

.section-block {
    margin: 42px 0;
}

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

.section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.section-head a {
    color: #ea580c;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    padding: 10px 14px;
    border: 1px solid rgba(249, 115, 22, 0.18);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(249, 115, 22, 0.16);
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 48px rgba(236, 72, 153, 0.2);
}

.poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #fed7aa, #fbcfe8);
}

.poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.score,
.rank-badge {
    position: absolute;
    top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 32px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.score {
    right: 12px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.rank-badge {
    left: 12px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.card-body {
    padding: 16px;
}

.meta-line,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.meta-line span,
.detail-meta span {
    position: relative;
    padding-right: 8px;
}

.movie-card h3 {
    min-height: 54px;
    margin: 10px 0 8px;
    color: #111827;
    font-size: 19px;
    line-height: 1.42;
}

.movie-card h3 a:hover {
    color: #ea580c;
}

.movie-card p {
    min-height: 66px;
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
}

.compact {
    min-width: 196px;
}

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

.compact h3 {
    min-height: 48px;
    font-size: 16px;
}

.compact p {
    min-height: 44px;
    font-size: 13px;
}

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

.horizontal-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 210px;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x proximity;
}

.rank-panel {
    padding: 24px;
}

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

.ranking-list a {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    transition: 0.25s ease;
}

.ranking-list a:hover {
    transform: translateX(4px);
    box-shadow: 0 16px 26px rgba(249, 115, 22, 0.14);
}

.ranking-list span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    font-weight: 900;
}

.ranking-list strong {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ranking-list em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.page-main,
.movie-main {
    padding-top: 30px;
}

.page-hero {
    padding: 44px;
    overflow: hidden;
}

.page-hero h1 {
    font-size: clamp(38px, 6vw, 68px);
}

.page-hero p:not(.section-kicker) {
    max-width: 820px;
    color: var(--muted);
    line-height: 1.85;
    font-size: 17px;
}

.slim-hero {
    min-height: 280px;
}

.inline-search {
    margin-top: 20px;
}

.inline-search input {
    width: min(100%, 520px);
}

.filter-row {
    margin-top: 18px;
}

.filter-chip {
    cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

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

.empty-state.show {
    display: block;
}

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

.category-card {
    overflow: hidden;
}

.category-main {
    display: block;
    padding: 28px;
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.95), rgba(253, 242, 248, 0.95));
}

.category-main span {
    color: #db2777;
    font-weight: 900;
}

.category-main h2 {
    margin: 8px 0;
    font-size: 32px;
}

.category-main p {
    color: var(--muted);
    line-height: 1.75;
}

.category-samples {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 14px;
}

.category-samples a {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fed7aa;
}

.category-samples img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.category-samples span {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    color: var(--muted);
    margin: 4px 0 18px;
    font-weight: 700;
}

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

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
    padding: 46px;
    background: #111827;
}

.detail-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: blur(2px) saturate(1.08);
    transform: scale(1.05);
    opacity: 0.5;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.58)),
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.46), transparent 34%);
}

.detail-poster,
.detail-info {
    position: relative;
    z-index: 1;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.38);
}

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

.detail-info h1 {
    color: #ffffff;
    font-size: clamp(38px, 6vw, 72px);
}

.detail-meta {
    margin: 18px 0;
    color: rgba(255, 255, 255, 0.76);
}

.detail-line {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.85;
}

.large-tags {
    margin: 22px 0 28px;
}

.player-section {
    margin-top: 28px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #0f172a;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background:
        radial-gradient(circle, rgba(236, 72, 153, 0.34), transparent 35%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.88));
}

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

.play-icon {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 22px 42px rgba(236, 72, 153, 0.35);
    font-size: 32px;
    padding-left: 5px;
}

.player-cover strong {
    font-size: 24px;
}

.detail-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.text-panel {
    padding: 28px;
}

.text-panel p {
    color: var(--muted);
    line-height: 1.95;
    font-size: 16px;
}

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

.site-footer {
    margin-top: 60px;
    background: linear-gradient(90deg, rgba(255, 237, 213, 0.92), rgba(252, 231, 243, 0.92), rgba(254, 249, 195, 0.92));
    border-top: 4px solid rgba(251, 146, 60, 0.38);
}

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

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.site-footer p {
    color: var(--muted);
    line-height: 1.85;
}

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

.footer-links a {
    color: #4b5563;
    background: rgba(255, 255, 255, 0.68);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 800;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 28px;
    color: var(--muted);
    border-top: 1px solid rgba(249, 115, 22, 0.16);
}

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

    .hero,
    .split-section,
    .detail-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 220px;
        padding: 42px;
    }

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

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

@media (max-width: 760px) {
    .header-inner {
        height: 66px;
    }

    .brand-text small,
    .nav-links {
        display: none;
    }

    .brand-text strong {
        font-size: 20px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .mobile-search input {
        flex: 1;
        width: auto;
    }

    .mobile-brand {
        display: block;
        margin: 14px 0 6px;
        color: #ea580c;
        font-size: 20px;
        font-weight: 900;
    }

    main {
        width: min(100% - 24px, 1180px);
    }

    .hero {
        min-height: auto;
        padding-top: 18px;
    }

    .hero-stage {
        min-height: 640px;
        border-radius: 28px;
    }

    .hero-slide {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-end;
        padding: 28px;
    }

    .hero-poster {
        width: 46%;
        min-width: 150px;
        align-self: flex-end;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-panel,
    .page-hero,
    .text-panel,
    .rank-panel {
        padding: 24px;
        border-radius: 26px;
    }

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

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-hero {
        grid-template-columns: 1fr;
        padding: 26px;
        min-height: auto;
    }

    .detail-poster {
        width: min(62%, 260px);
    }

    .detail-info h1 {
        font-size: 38px;
    }

    .inline-search,
    .hero-search {
        align-items: stretch;
        flex-direction: column;
    }

    .inline-search input,
    .hero-search input,
    .inline-search button,
    .hero-search button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-categories,
    .movie-grid,
    .ranking-grid,
    .category-overview,
    .related-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-slide {
        padding: 22px;
    }

    .hero-poster {
        width: 58%;
    }

    .hero-dots {
        left: 24px;
        bottom: 18px;
    }

    .movie-card h3,
    .movie-card p {
        min-height: auto;
    }
}
