:root {
    --amber-50: #fff8eb;
    --amber-100: #ffefcf;
    --amber-200: #fedb91;
    --amber-300: #f7c15f;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e5e7eb;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 28px rgba(146, 64, 14, 0.13);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--amber-50) 0%, #ffffff 48%, #fffaf0 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button, input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(90deg, var(--amber-900), var(--amber-800), var(--amber-900));
    box-shadow: 0 14px 32px rgba(49, 25, 8, 0.22);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    color: var(--white);
    font-size: 23px;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.brand-copy {
    display: grid;
    gap: 0;
}

.brand-copy strong {
    font-size: 22px;
    letter-spacing: 0.02em;
}

.brand-copy small {
    color: var(--amber-200);
    font-size: 12px;
}

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

.nav-link,
.mobile-link {
    border-radius: 12px;
    color: var(--white);
    font-weight: 700;
    transition: 0.25s ease;
}

.nav-link {
    padding: 10px 16px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff8dc;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
}

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

.mobile-link {
    display: block;
    padding: 12px 14px;
}

.hero-slider {
    position: relative;
    height: min(620px, calc(100vh - 74px));
    min-height: 500px;
    overflow: hidden;
    background: #1f1208;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.8s ease, transform 1.2s ease;
    pointer-events: none;
}

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

.hero-image,
.sub-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #2d1607, #7c2d12);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.28), transparent 34%),
        linear-gradient(90deg, rgba(71, 31, 8, 0.95), rgba(120, 53, 15, 0.78) 48%, rgba(15, 23, 42, 0.35));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-copy {
    max-width: 700px;
    color: var(--white);
    animation: fadeUp 0.8s ease both;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--amber-200);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--amber-700);
}

.hero-copy h1,
.sub-hero-content h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero-desc {
    max-width: 650px;
    margin: 22px 0 0;
    color: #fff5d6;
    font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags span,
.tag-pill {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.tag-pill {
    background: var(--amber-100);
    color: var(--amber-800);
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.25s ease;
}

.primary-btn {
    background: linear-gradient(90deg, var(--amber-500), #f97316);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.32);
}

.primary-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 36px rgba(245, 158, 11, 0.42);
}

.ghost-btn {
    border: 2px solid rgba(255, 255, 255, 0.78);
    color: var(--white);
}

.ghost-btn:hover {
    background: var(--white);
    color: var(--amber-900);
}

.ghost-btn.dark {
    border-color: var(--amber-500);
    color: var(--amber-700);
}

.ghost-btn.dark:hover {
    background: var(--amber-50);
}

.hero-controls {
    position: absolute;
    z-index: 4;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-size: 28px;
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background: var(--amber-500);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    transition: 0.25s ease;
}

.hero-dot.active {
    width: 34px;
    background: var(--amber-300);
}

.hero-rail-section,
.section-block {
    padding: 64px 0;
}

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

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
}

.section-heading a {
    color: var(--amber-700);
    font-weight: 900;
}

.amber-band {
    padding: 64px 0;
    background: linear-gradient(90deg, #fff7e6, #fff1d8);
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

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

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.64));
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.poster-type,
.rank-badge {
    position: absolute;
    top: 10px;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
}

.poster-type {
    right: 10px;
    padding: 5px 9px;
    background: rgba(15, 23, 42, 0.68);
}

.rank-badge {
    left: 10px;
    padding: 5px 10px;
    background: linear-gradient(90deg, var(--amber-500), #fb923c);
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.92);
    color: var(--white);
    transform: translate(-50%, -42%) scale(0.88);
    opacity: 0;
    transition: 0.25s ease;
}

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

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

.movie-card h3 {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--gray-900);
    font-size: 16px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card h3 a:hover {
    color: var(--amber-700);
}

.movie-card p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--gray-500);
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 800;
}

.rating,
.rank-score {
    color: var(--amber-600);
}

.small-card {
    display: grid;
    grid-template-columns: 98px 1fr;
    gap: 14px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
    transition: 0.25s ease;
}

.small-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.small-card img {
    width: 98px;
    height: 126px;
    object-fit: cover;
    background: linear-gradient(135deg, #3b1d08, #f59e0b);
}

.small-card span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding-right: 14px;
}

.small-card strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.small-card em {
    color: var(--gray-500);
    font-size: 13px;
    font-style: normal;
}

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

.category-tile,
.category-overview-card {
    position: relative;
    display: flex;
    min-height: 180px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #351808;
    box-shadow: var(--soft-shadow);
    transition: 0.25s ease;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-tile img,
.category-overview-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

.tile-shade,
.category-overview-card span {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.86));
}

.category-tile strong,
.category-tile em,
.category-overview-card strong,
.category-overview-card em {
    position: relative;
    z-index: 1;
    align-self: flex-end;
    color: var(--white);
}

.category-tile,
.category-overview-card {
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.category-tile strong,
.category-overview-card strong {
    font-size: 22px;
}

.category-tile em,
.category-overview-card em {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    color: #ffe6ad;
    font-size: 13px;
    font-style: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sub-hero {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    background: var(--amber-900);
}

.sub-hero-bg {
    position: absolute;
    inset: 0;
}

.sub-hero-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.24), transparent 32%),
        linear-gradient(90deg, rgba(69, 26, 3, 0.92), rgba(120, 53, 15, 0.78));
}

.sub-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 320px;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.sub-hero-content p:last-child {
    max-width: 720px;
    margin: 16px 0 0;
    color: #ffefd0;
    font-size: 18px;
}

.filter-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--soft-shadow);
}

.search-box {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.search-box span {
    color: var(--amber-700);
    font-weight: 900;
}

.search-box input {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 12px 16px;
    outline: none;
    background: var(--gray-50);
}

.search-box input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    background: var(--gray-100);
    color: var(--gray-700);
    cursor: pointer;
    font-weight: 900;
    transition: 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
    background: linear-gradient(90deg, var(--amber-500), #f97316);
    color: var(--white);
}

.detail-layout {
    padding: 34px 0 72px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb a {
    color: var(--amber-700);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #050505;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.25);
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 72vh;
    object-fit: contain;
    background: #050505;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 28px;
    background:
        radial-gradient(circle at 50% 32%, rgba(245, 158, 11, 0.24), transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.78));
    color: var(--white);
    text-align: center;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
    display: grid;
    width: 84px;
    height: 84px;
    margin-bottom: 16px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-500), #f97316);
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.35);
    font-size: 34px;
}

.player-overlay strong {
    max-width: 760px;
    font-size: clamp(24px, 4vw, 46px);
    line-height: 1.15;
}

.player-overlay em {
    max-width: 720px;
    margin-top: 12px;
    color: #ffe8b8;
    font-style: normal;
}

.detail-hero-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    margin-top: 28px;
    padding: 26px;
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #3b1d08, #f59e0b);
}

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

.detail-copy h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

.lead-text {
    margin: 16px 0 0;
    color: var(--gray-700);
    font-size: 18px;
}

.detail-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.detail-facts div {
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--amber-50), #ffffff);
    border: 1px solid rgba(245, 158, 11, 0.16);
}

.detail-facts span {
    display: block;
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 800;
}

.detail-facts strong {
    display: block;
    margin-top: 4px;
    color: var(--gray-900);
}

.content-card {
    margin-top: 28px;
    padding: 30px;
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.content-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

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

.content-card p {
    margin: 0;
    color: var(--gray-700);
    font-size: 17px;
}

.related-block {
    padding-bottom: 0;
}

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

.podium-card {
    position: relative;
    display: flex;
    min-height: 420px;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 28px;
    padding: 24px;
    color: var(--white);
    box-shadow: var(--shadow);
}

.podium-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podium-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.86));
}

.podium-card strong,
.podium-card em,
.podium-rank {
    position: relative;
    z-index: 1;
}

.podium-rank {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
    place-items: center;
    border-radius: 50%;
    background: var(--amber-500);
    font-size: 24px;
    font-weight: 900;
}

.podium-card strong {
    font-size: 26px;
    line-height: 1.15;
}

.podium-card em {
    margin-top: 8px;
    color: #ffe8b8;
    font-style: normal;
}

.rank-list {
    display: grid;
    gap: 14px;
}

.rank-row {
    display: grid;
    grid-template-columns: 54px 72px 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    transition: 0.22s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    box-shadow: var(--soft-shadow);
}

.rank-index {
    color: var(--amber-700);
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}

.rank-row img {
    width: 72px;
    height: 96px;
    border-radius: 12px;
    object-fit: cover;
    background: linear-gradient(135deg, #3b1d08, #f59e0b);
}

.rank-info strong {
    display: block;
    font-size: 18px;
}

.rank-info em {
    display: -webkit-box;
    margin-top: 4px;
    overflow: hidden;
    color: var(--gray-500);
    font-style: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-meta {
    color: var(--gray-500);
    font-weight: 800;
    white-space: nowrap;
}

.rank-score {
    font-weight: 900;
    white-space: nowrap;
}

.site-footer {
    margin-top: 40px;
    background: linear-gradient(180deg, #111827, #020617);
    color: #cbd5e1;
}

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

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

.site-footer p {
    margin: 0;
    color: #cbd5e1;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a:hover {
    color: var(--amber-300);
}

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

.footer-bottom p {
    margin: 0;
    color: #94a3b8;
}

[data-card].hidden {
    display: none !important;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 34px;
    border-radius: 20px;
    background: var(--white);
    color: var(--gray-500);
    text-align: center;
    box-shadow: var(--soft-shadow);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

    .mobile-toggle {
        display: block;
    }

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

    .hero-content {
        align-items: flex-end;
        padding-bottom: 86px;
    }

    .hero-controls {
        left: 16px;
        right: auto;
        bottom: 22px;
    }

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

    .section-heading,
    .filter-panel {
        align-items: stretch;
        flex-direction: column;
    }

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

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

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

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

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

    .rank-row {
        grid-template-columns: 40px 64px 1fr;
    }

    .rank-meta,
    .rank-score {
        display: none;
    }

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand-copy strong {
        font-size: 18px;
    }

    .brand-copy small {
        display: none;
    }

    .hero-copy h1,
    .sub-hero-content h1 {
        font-size: 36px;
    }

    .hero-actions,
    .detail-actions {
        flex-direction: column;
    }

    .primary-btn,
    .ghost-btn {
        width: 100%;
    }

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

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

    .movie-card h3 {
        font-size: 14px;
    }

    .movie-card p {
        display: none;
    }

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

    .content-card,
    .detail-hero-card {
        padding: 20px;
    }

    .player-overlay em {
        display: none;
    }

    .play-circle {
        width: 70px;
        height: 70px;
    }

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