:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --cyan: #06b6d4;
    --teal: #0f766e;
    --orange: #f97316;
    --yellow: #eab308;
    --green: #16a34a;
    --ink: #111827;
    --muted: #6b7280;
    --soft: #f8fafc;
    --line: #e5e7eb;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 18px;
}

* {
    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(--ink);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 38%, #f9fafb 100%);
    line-height: 1.6;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    max-width: 1280px;
    height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-weight: 800;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
}

.brand-name {
    font-size: 21px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    padding: 9px 13px;
    color: #374151;
    border-radius: 12px;
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--blue);
    background: #eff6ff;
    transform: translateY(-1px);
}

.top-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-search input,
.page-filter-form input {
    width: 260px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 11px 16px;
    color: var(--ink);
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search input:focus,
.page-filter-form input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.top-search button,
.btn-primary,
.btn-ghost,
.section-more {
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

.top-search button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    border: 0;
    background: #f3f4f6;
    border-radius: 12px;
    width: 42px;
    height: 42px;
    font-size: 22px;
}

.hero-slider {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, #1d4ed8, #0891b2 55%, #0f766e);
}

.hero-track {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
    background-image:
        linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 64, 175, 0.72) 47%, rgba(8, 145, 178, 0.42) 100%),
        var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 28%), radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.12), transparent 25%);
}

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

.hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100% - 48px));
    margin-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    padding: 78px 0 120px;
    color: #ffffff;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cffafe;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 18px 0 18px;
    font-size: clamp(42px, 7vw, 74px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
}

.hero-tags,
.tag-cloud,
.filter-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.tag-cloud span,
.filter-links a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 700;
}

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

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
    color: var(--blue);
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.hero-panel {
    position: absolute;
    right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    bottom: 96px;
    z-index: 2;
    display: grid;
    gap: 12px;
}

.hero-panel a {
    min-width: 160px;
    padding: 14px 18px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

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

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

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

.section-wrap {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    padding: 58px 0;
}

.pull-up {
    position: relative;
    z-index: 3;
    margin-top: -92px;
    padding-top: 0;
}

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

.section-head > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.2;
}

.section-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 14px;
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.22);
}

.section-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--blue);
    font-weight: 800;
}

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

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

.all-grid {
    align-items: stretch;
}

.movie-card {
    min-width: 0;
    overflow: hidden;
    background: var(--card);
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover,
.ranking-card:hover,
.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(37, 99, 235, 0.22);
}

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #1d4ed8, #06b6d4);
}

.poster-frame img,
.detail-poster img,
.small-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.2s ease;
}

.poster-frame img.is-missing,
.detail-poster img.is-missing,
.small-poster img.is-missing {
    display: none;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.72));
    opacity: 0.82;
}

.type-badge,
.year-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
}

.type-badge {
    top: 12px;
    left: 12px;
    background: var(--blue);
}

.year-badge {
    right: 12px;
    bottom: 12px;
    background: rgba(15, 23, 42, 0.76);
}

.play-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.82);
    border-radius: 999px;
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
    padding: 18px;
}

.card-body h2,
.ranking-info h2,
.small-card h3 {
    margin: 0;
    line-height: 1.35;
}

.card-body h2 {
    min-height: 46px;
    font-size: 17px;
}

.card-body h2 a:hover,
.ranking-info h2 a:hover,
.small-card h3 a:hover {
    color: var(--blue);
}

.card-body p,
.ranking-info p {
    display: -webkit-box;
    margin: 10px 0 14px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748b;
    font-size: 12px;
}

.meta-row span {
    padding: 4px 8px;
    background: #f1f5f9;
    border-radius: 999px;
}

.category-band,
.recommend-band {
    background: linear-gradient(90deg, #f8fafc, #eff6ff 50%, #ecfeff);
}

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

.category-tile,
.category-overview-card {
    display: block;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-tile span,
.category-main-link {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
}

.category-tile small,
.category-overview-card p {
    color: var(--muted);
}

.two-column-area {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.ranking-box {
    position: sticky;
    top: 94px;
    padding: 24px;
    background: #111827;
    color: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.ranking-title {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 900;
}

.ranking-box ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-box li {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rank-num,
.big-rank {
    color: #fde68a;
    font-weight: 900;
}

.ranking-box a:hover {
    color: #93c5fd;
}

.ranking-box em {
    color: #a7f3d0;
    font-style: normal;
    font-weight: 800;
}

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

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
}

.movie-card-horizontal .poster-frame {
    height: 100%;
    min-height: 150px;
}

.movie-card-horizontal .card-body h2 {
    min-height: auto;
}

.page-shell {
    min-height: 70vh;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 72px max(24px, calc((100vw - 1280px) / 2 + 24px));
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8, #0891b2 58%, #0f766e);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -8%;
    top: -35%;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 0 12px;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.1;
}

.page-hero p {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.page-filter-form {
    position: relative;
    z-index: 1;
    margin-top: 24px;
}

.page-filter-form input {
    width: min(620px, 100%);
    border: 0;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

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

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
}

.filter-links {
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.filter-links a {
    background: rgba(255, 255, 255, 0.18);
}

.ranking-grid {
    display: grid;
    gap: 18px;
}

.ranking-card {
    display: grid;
    grid-template-columns: 70px 220px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.big-rank {
    font-size: 28px;
    color: var(--orange);
}

.ranking-card .poster-frame {
    border-radius: 14px;
}

.detail-page {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    padding: 28px 0 72px;
}

.detail-breadcrumb {
    margin-bottom: 22px;
    color: #64748b;
}

.detail-hero {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
    padding: 30px;
    background: linear-gradient(135deg, #0f172a, #1d4ed8 56%, #0891b2);
    border-radius: 28px;
    box-shadow: var(--shadow);
    color: #ffffff;
}

.detail-poster {
    overflow: hidden;
    min-height: 420px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 22px;
}

.detail-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-intro h1 {
    margin: 16px 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.lead {
    max-width: 760px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta span {
    padding: 7px 12px;
    color: #eff6ff;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-weight: 800;
}

.watch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    margin-top: 30px;
    align-items: start;
}

.player-panel,
.side-panel,
.detail-content article {
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.player-panel h2,
.side-panel h2,
.detail-content h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    background: #000000;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #000000;
}

.play-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.34), rgba(15, 23, 42, 0.72));
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.player-shell.is-playing .play-layer {
    opacity: 0;
    pointer-events: none;
}

.play-circle {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    font-size: 34px;
}

.side-panel {
    position: sticky;
    top: 94px;
}

.small-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.small-poster {
    display: block;
    overflow: hidden;
    height: 64px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 12px;
}

.small-card h3 {
    font-size: 15px;
}

.small-card p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.detail-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-top: 26px;
}

.detail-content p {
    margin: 0;
    color: #374151;
    font-size: 17px;
}

.related-wrap {
    width: 100%;
    padding-bottom: 0;
}

.empty-state {
    margin: 22px 0 0;
    padding: 24px;
    color: var(--muted);
    text-align: center;
    background: #ffffff;
    border: 1px dashed var(--line);
    border-radius: 18px;
}

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

.site-footer {
    margin-top: 46px;
    color: #d1d5db;
    background: #111827;
}

.footer-inner {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
}

.footer-logo .brand-name {
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.footer-brand p {
    max-width: 520px;
    margin: 16px 0 0;
}

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

.footer-links h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

.footer-links a {
    display: block;
    margin: 8px 0;
    color: #d1d5db;
}

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

.footer-bottom {
    padding: 18px 24px;
    color: #9ca3af;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

    .two-column-area,
    .watch-layout,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .ranking-box,
    .side-panel {
        position: static;
    }
}

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

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .site-nav {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        padding: 8px 0 4px;
    }

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

    .nav-link {
        width: 100%;
    }

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

    .hero-content {
        width: calc(100% - 36px);
        margin-left: 18px;
        padding: 70px 0 140px;
    }

    .hero-panel {
        left: 18px;
        right: 18px;
        bottom: 68px;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-panel a {
        min-width: 0;
        text-align: center;
        font-size: 14px;
    }

    .section-wrap,
    .detail-page,
    .footer-inner {
        width: min(100% - 32px, 1280px);
    }

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

    .movie-card-horizontal {
        grid-template-columns: 1fr;
    }

    .ranking-card {
        grid-template-columns: 48px 110px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

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

    .detail-poster {
        min-height: auto;
        aspect-ratio: 16 / 10;
    }

    .footer-inner,
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .brand-name {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 17px;
    }

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

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

    .movie-grid,
    .compact-grid,
    .category-grid,
    .overview-grid,
    .horizontal-list {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 52px 18px;
    }

    .ranking-card {
        grid-template-columns: 44px 1fr;
    }

    .ranking-card .poster-frame {
        display: none;
    }
}
