:root {
    color-scheme: light;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --cyan-600: #0891b2;
    --cyan-500: #06b6d4;
    --cyan-400: #22d3ee;
    --blue-700: #1d4ed8;
    --radius-lg: 22px;
    --radius-md: 16px;
    --shadow-xl: 0 24px 70px rgba(15, 23, 42, 0.18);
    --shadow-card: 0 18px 42px rgba(15, 23, 42, 0.13);
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--slate-900);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #eef6f8 100%);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--slate-950), var(--slate-900), var(--slate-800));
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.35);
}

.header-inner {
    width: min(100% - 32px, var(--max-width));
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan-500), var(--blue-700));
    box-shadow: 0 0 34px rgba(34, 211, 238, 0.35);
    transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-3deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-copy strong {
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--cyan-400);
    font-size: 0.74rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    color: var(--slate-300);
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan-400);
}

.header-search {
    padding: 10px 16px;
    border: 1px solid rgba(34, 211, 238, 0.35);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.55);
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search:hover {
    background: rgba(6, 182, 212, 0.18);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: #ffffff;
}

.mobile-nav {
    display: none;
    width: min(100% - 32px, var(--max-width));
    margin: 0 auto;
    padding: 0 0 18px;
}

.mobile-nav.open {
    display: grid;
    gap: 12px;
}

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

.section {
    padding: 76px 0;
}

.hero-carousel {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
    color: #ffffff;
    background: var(--slate-950);
}

.hero-track,
.hero-slide,
.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

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

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

.hero-bg {
    background-position: center;
    background-size: cover;
    filter: saturate(1.08) contrast(1.05);
    transform: scale(1.04);
}

.hero-overlay {
    background:
        radial-gradient(circle at 78% 32%, rgba(34, 211, 238, 0.18), transparent 28%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.78) 43%, rgba(15, 23, 42, 0.38) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.42), rgba(2, 6, 23, 0.92));
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan-600);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.invert .eyebrow,
.hero-text .eyebrow,
.detail-copy .eyebrow {
    color: var(--cyan-400);
}

.hero-text h1 {
    margin: 18px 0 18px;
    max-width: 820px;
    font-size: clamp(2.7rem, 6vw, 5.9rem);
    line-height: 0.96;
    letter-spacing: -0.08em;
}

.hero-text p {
    max-width: 720px;
    margin: 0;
    color: var(--slate-200);
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.hero-tags,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-tags span,
.tag-cloud a {
    padding: 7px 12px;
    border: 1px solid rgba(34, 211, 238, 0.34);
    border-radius: 999px;
    color: #ecfeff;
    background: rgba(8, 145, 178, 0.2);
    backdrop-filter: blur(10px);
    font-size: 0.86rem;
}

.tag-cloud a {
    color: var(--cyan-600);
    background: #ecfeff;
}

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

.center-actions {
    justify-content: center;
}

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

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan-500), var(--blue-700));
    box-shadow: 0 18px 42px rgba(8, 145, 178, 0.35);
}

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

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

.ghost-btn.light {
    color: var(--slate-900);
    border-color: rgba(15, 23, 42, 0.12);
    background: #ffffff;
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
    transform: rotate(2deg);
}

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

.hero-poster:hover img {
    transform: scale(1.08);
}

.hero-poster span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 12px;
    border-radius: 16px;
    text-align: center;
    font-weight: 900;
    background: rgba(2, 6, 23, 0.76);
    backdrop-filter: blur(12px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.45);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transform: translateY(-50%);
}

.hero-arrow.prev {
    left: 22px;
}

.hero-arrow.next {
    right: 22px;
}

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

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

.hero-dot.active {
    width: 32px;
    background: var(--cyan-400);
}

.stats-strip {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -44px;
}

.stats-strip div {
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
}

.stats-strip strong {
    display: block;
    color: var(--slate-900);
    font-size: 2rem;
    line-height: 1;
}

.stats-strip span {
    color: var(--slate-500);
    font-weight: 700;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 30px;
}

.section-heading h1,
.section-heading h2,
.page-hero h1 {
    margin: 10px 0 10px;
    color: var(--slate-900);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.section-heading p,
.page-hero p {
    margin: 0;
    color: var(--slate-600);
    font-size: 1.05rem;
}

.section-heading.invert h2,
.section-heading.invert p {
    color: #ffffff;
}

.filter-panel {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.filter-copy {
    display: flex;
    flex-direction: column;
}

.filter-copy span {
    color: var(--slate-500);
    font-size: 0.86rem;
    font-weight: 800;
}

.filter-copy strong {
    color: var(--cyan-600);
    font-size: 1.8rem;
    line-height: 1;
}

.filter-controls {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(130px, 0.25fr));
    gap: 12px;
}

.filter-controls input,
.filter-controls select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--slate-200);
    border-radius: 13px;
    color: var(--slate-900);
    background: var(--slate-50);
    outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--cyan-500);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.16);
}

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

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.poster-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--slate-200);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82));
    transition: opacity 0.3s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.year-badge,
.rank-badge,
.play-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
}

.year-badge {
    left: 10px;
    bottom: 10px;
    padding: 5px 9px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.66);
    backdrop-filter: blur(8px);
}

.rank-badge {
    left: 10px;
    top: 10px;
    padding: 5px 9px;
    color: var(--slate-950);
    background: var(--cyan-400);
}

.play-badge {
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--cyan-500);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.movie-info {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
}

.movie-info strong {
    color: var(--slate-900);
    font-size: 0.98rem;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.movie-card:hover .movie-info strong {
    color: var(--cyan-600);
}

.movie-meta,
.movie-desc {
    color: var(--slate-500);
    font-size: 0.82rem;
}

.movie-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dark-section {
    color: #ffffff;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 32%),
        linear-gradient(135deg, var(--slate-950), var(--slate-900));
}

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

.category-tile,
.category-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--slate-800);
    box-shadow: var(--shadow-card);
}

.category-tile img,
.category-card img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-tile::after,
.category-card-shade {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.9));
}

.category-tile span,
.category-card-body {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: grid;
    gap: 6px;
    color: #ffffff;
}

.category-tile strong,
.category-card-body strong {
    font-size: 1.18rem;
}

.category-tile em,
.category-card-body em,
.category-card-body small {
    color: var(--slate-200);
    font-style: normal;
}

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

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

.compact-card {
    flex-direction: row;
    min-height: 170px;
}

.compact-card .poster-frame {
    width: 118px;
    flex: 0 0 118px;
    aspect-ratio: auto;
}

.compact-card .movie-info {
    min-height: auto;
    justify-content: center;
}

.page-hero,
.detail-hero {
    position: relative;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.2), transparent 32%),
        linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.page-hero {
    padding: 92px 0 72px;
}

.page-hero h1,
.page-hero p {
    color: #ffffff;
}

.small-hero {
    padding: 78px 0 58px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 22px;
    color: var(--slate-300);
    font-size: 0.92rem;
}

.breadcrumb a:hover {
    color: var(--cyan-400);
}

.detail-hero {
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.detail-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.42)),
        linear-gradient(180deg, rgba(2, 6, 23, 0.42), rgba(2, 6, 23, 0.94));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 76px 0;
}

.detail-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

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

.detail-copy h1 {
    margin: 14px 0 16px;
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.detail-copy p {
    max-width: 850px;
    margin: 0;
    color: var(--slate-200);
    font-size: 1.15rem;
}

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

.detail-meta-row span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #ecfeff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--slate-950);
    box-shadow: var(--shadow-xl);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    color: #ffffff;
    border: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.72));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan-500), var(--blue-700));
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.38);
}

.player-overlay strong {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.68);
    backdrop-filter: blur(10px);
}

.player-status {
    margin: 14px 0 0;
    color: var(--slate-500);
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
    gap: 22px;
}

.content-card {
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.content-card h2 {
    margin: 0 0 12px;
    color: var(--slate-900);
    font-size: 1.45rem;
}

.content-card h2:not(:first-child) {
    margin-top: 28px;
}

.content-card p {
    margin: 0;
    color: var(--slate-600);
    font-size: 1.02rem;
}

.info-list {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px 14px;
    margin: 0 0 20px;
}

.info-list dt {
    color: var(--slate-500);
    font-weight: 800;
}

.info-list dd {
    margin: 0;
    color: var(--slate-900);
    font-weight: 700;
}

.info-list a {
    color: var(--cyan-600);
}

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

.site-footer {
    color: var(--slate-300);
    background: var(--slate-950);
}

.footer-inner {
    width: min(100% - 32px, var(--max-width));
    margin: 0 auto;
    padding: 42px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 900;
}

.footer-inner p {
    max-width: 520px;
    margin: 10px 0 0;
    color: var(--slate-400);
}

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

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

.back-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: var(--cyan-600);
    box-shadow: 0 15px 35px rgba(8, 145, 178, 0.38);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
}

.is-filtered-out {
    display: none !important;
}

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

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

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

    .mobile-toggle {
        display: block;
    }

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

    .hero-poster {
        max-width: 260px;
        transform: none;
    }

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

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

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

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

    .brand-copy strong {
        font-size: 1.08rem;
    }

    .hero-carousel,
    .hero-content {
        min-height: 76vh;
    }

    .hero-content {
        padding-top: 54px;
        gap: 26px;
    }

    .hero-text h1,
    .detail-copy h1 {
        letter-spacing: -0.05em;
    }

    .hero-arrow {
        display: none;
    }

    .stats-strip,
    .movie-grid,
    .ranking-grid,
    .ranking-list,
    .category-grid,
    .category-card-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section {
        padding: 54px 0;
    }

    .compact-card {
        flex-direction: column;
    }

    .compact-card .poster-frame {
        width: 100%;
        flex: auto;
        aspect-ratio: 3 / 4;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-hero-inner {
        padding: 50px 0;
    }
}

@media (max-width: 420px) {
    .movie-grid,
    .ranking-grid,
    .ranking-list,
    .category-grid,
    .category-card-grid,
    .related-grid,
    .stats-strip {
        grid-template-columns: 1fr;
    }
}
