:root {
    --bg: #f8fafc;
    --panel: #ffffff;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --deep: #020617;
    --deep-soft: #0f172a;
    --cyan: #06b6d4;
    --cyan-dark: #0891b2;
    --blue: #2563eb;
    --rose: #f43f5e;
    --orange: #f97316;
    --violet: #8b5cf6;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f1f5f9 100%);
    color: var(--ink);
}

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(135deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.96));
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 10px 25px rgba(2, 6, 23, 0.25);
}

.nav-shell {
    max-width: 1180px;
    min-height: 68px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 12px 24px rgba(6, 182, 212, 0.35);
    font-size: 16px;
}

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

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

.nav-link,
.mobile-link {
    color: #cbd5e1;
    border-radius: 12px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #ffffff;
    background: rgba(51, 65, 85, 0.75);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(51, 65, 85, 0.8);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 10px 20px 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

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

.hero-carousel {
    position: relative;
    height: 72vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--deep);
}

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

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(15, 23, 42, 0.64) 46%, rgba(15, 23, 42, 0.16) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.46), rgba(2, 6, 23, 0.04));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px 84px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-kicker,
.tiny-meta,
.detail-meta,
.row-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-kicker span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(6, 182, 212, 0.86);
    backdrop-filter: blur(10px);
    font-size: 14px;
}

.hero-content h1 {
    max-width: 760px;
    margin: 18px 0 18px;
    color: #ffffff;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-content p {
    max-width: 660px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.75;
}

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

.hero-tags span,
.detail-tags span,
.tag-line span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
}

.hero-tags span {
    padding: 7px 13px;
    color: #cffafe;
    border: 1px solid rgba(125, 211, 252, 0.4);
    background: rgba(15, 23, 42, 0.32);
}

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

.primary-btn,
.ghost-btn,
.outline-btn,
.search-panel button,
.hero-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn {
    min-height: 50px;
    padding: 0 28px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 30px rgba(6, 182, 212, 0.26);
}

.primary-btn:hover,
.hero-search button:hover,
.search-panel button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px rgba(6, 182, 212, 0.36);
}

.ghost-btn {
    min-height: 50px;
    padding: 0 26px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(12px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

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

.hero-search {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 82px;
    width: min(720px, calc(100% - 40px));
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.hero-search input,
.search-panel input,
.page-search {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: none;
    padding: 0 16px;
    color: var(--ink);
    background: #ffffff;
}

.hero-search button,
.search-panel button {
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    cursor: pointer;
}

.main-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 44px 20px;
}

.section-block {
    margin-bottom: 64px;
}

.section-heading,
.category-preview-head,
.detail-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

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

.section-heading h2,
.category-preview h2,
.related-panel h2,
.detail-section h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
}

.section-heading a {
    color: var(--cyan-dark);
    font-weight: 800;
}

.section-icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 12px 22px rgba(249, 115, 22, 0.22);
}

.section-icon.cyan {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.section-icon.rose {
    background: linear-gradient(135deg, var(--rose), #fb7185);
}

.section-icon.orange {
    background: linear-gradient(135deg, var(--orange), #f59e0b);
}

.section-icon.violet {
    background: linear-gradient(135deg, var(--violet), #6366f1);
}

.feature-grid,
.poster-grid,
.category-grid {
    display: grid;
    gap: 22px;
}

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

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

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

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

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

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

.soft-panel {
    padding: 30px;
    border: 1px solid #cffafe;
    border-radius: 32px;
    background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.poster-card a,
.feature-card a,
.movie-row a,
.category-tile,
.category-preview,
.detail-info-card,
.detail-section,
.related-panel,
.player-card,
.rank-panel {
    background: var(--panel);
    box-shadow: var(--soft-shadow);
}

.poster-card a,
.feature-card a {
    display: block;
    height: 100%;
    border-radius: 18px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.poster-card a:hover,
.feature-card a:hover,
.category-tile:hover,
.movie-row a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.poster-frame,
.feature-poster {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #0f172a;
}

.poster-frame {
    aspect-ratio: 16 / 10;
    border-radius: 18px 18px 12px 12px;
}

.feature-poster {
    height: 260px;
    border-radius: 22px 22px 0 0;
}

.poster-frame img,
.feature-poster img,
.movie-row figure img,
.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.poster-card a:hover img,
.feature-card a:hover img,
.movie-row a:hover img,
.category-tile:hover img {
    transform: scale(1.08);
}

.poster-frame::after,
.feature-poster::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 55%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.poster-card a:hover .poster-frame::after,
.feature-card a:hover .feature-poster::after {
    opacity: 1;
}

.poster-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 9px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.62);
    backdrop-filter: blur(10px);
    font-size: 12px;
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    transition: opacity 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(10px);
}

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

.poster-card h3,
.feature-card h3 {
    margin: 12px 12px 6px;
    font-size: 17px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.poster-card p,
.feature-card p {
    margin: 0 12px 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-line {
    padding: 0 12px 14px;
}

.tag-line span {
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 8px;
}

.feature-info {
    padding-bottom: 8px;
}

.tiny-meta {
    margin: 14px 12px 0;
    color: var(--cyan-dark);
    font-size: 12px;
    font-weight: 800;
}

.category-tile {
    position: relative;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 24px;
    color: #ffffff;
    padding: 24px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-tile img {
    position: absolute;
    inset: 0;
}

.category-tile span,
.category-tile p {
    position: relative;
    z-index: 1;
}

.category-tile span {
    font-size: 22px;
    font-weight: 900;
}

.category-tile p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.6;
}

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

.rank-panel,
.related-panel {
    border-radius: 24px;
    padding: 24px;
}

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

.movie-row a {
    display: grid;
    grid-template-columns: auto 112px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    border-radius: 18px;
    overflow: hidden;
    padding: 12px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-row figure {
    width: 112px;
    height: 76px;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #0f172a;
}

.rank-num {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--rose));
    font-size: 14px;
}

.movie-row h3 {
    margin: 0 0 6px;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-row p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.row-meta {
    margin-top: 8px;
    color: #94a3b8;
    font-size: 12px;
}

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

.page-hero {
    background:
        radial-gradient(circle at 20% 0%, rgba(6, 182, 212, 0.22), transparent 30%),
        linear-gradient(135deg, #0f172a, #020617);
    color: #ffffff;
}

.page-hero > div {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 20px;
}

.slim-hero > div {
    padding: 58px 20px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #cffafe;
    background: rgba(14, 165, 233, 0.18);
    border: 1px solid rgba(125, 211, 252, 0.22);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
    color: #cbd5e1;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #67e8f9;
}

.page-tools,
.search-panel {
    max-width: 660px;
    margin-top: 26px;
}

.search-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.category-list-page {
    display: grid;
    gap: 32px;
}

.category-preview {
    border-radius: 28px;
    padding: 28px;
}

.category-preview-head {
    align-items: flex-start;
}

.category-preview-head > div {
    display: block;
}

.category-preview p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.outline-btn {
    min-height: 42px;
    padding: 0 18px;
    color: var(--cyan-dark);
    border: 1px solid #bae6fd;
    background: #f0f9ff;
}

.empty-state {
    margin: 40px 0;
    padding: 24px;
    border-radius: 18px;
    color: var(--muted);
    text-align: center;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.top-three {
    margin-bottom: 36px;
}

.detail-main {
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

.detail-shell {
    padding-top: 28px;
}

.detail-breadcrumb {
    color: #475569;
}

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

.detail-content {
    min-width: 0;
}

.player-card,
.detail-info-card,
.detail-section {
    border-radius: 24px;
    overflow: hidden;
}

.player-frame {
    position: relative;
    background: #000000;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.52), rgba(2, 6, 23, 0.18));
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.big-play {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    font-size: 34px;
}

.detail-info-card,
.detail-section {
    margin-top: 24px;
    padding: 28px;
}

.detail-title-row {
    align-items: flex-start;
    margin-bottom: 18px;
}

.detail-title-row h1 {
    margin: 0 0 10px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.detail-title-row p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.detail-meta {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.detail-meta span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    color: #0e7490;
    background: #ecfeff;
    font-size: 13px;
    font-weight: 800;
}

.detail-section p {
    margin: 14px 0 0;
    color: #334155;
    line-height: 1.9;
    font-size: 16px;
}

.review-box {
    border-left: 5px solid var(--cyan);
}

.detail-tags span {
    padding: 8px 13px;
    color: #0e7490;
    background: linear-gradient(135deg, #ecfeff, #eff6ff);
    border: 1px solid #bae6fd;
    font-weight: 800;
}

.related-panel {
    position: sticky;
    top: 92px;
}

.related-panel h2 {
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
    font-size: 24px;
}

.search-results-section {
    min-height: 380px;
}

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

.footer-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 46px 20px 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
}

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

.footer-grid p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.75;
}

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

.footer-links a {
    color: #94a3b8;
}

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

.footer-bottom {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    color: #64748b;
    text-align: center;
    font-size: 14px;
}

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

    .menu-toggle {
        display: block;
    }

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

    .feature-grid,
    .poster-grid,
    .compact-grid,
    .small-grid,
    .mini-grid,
    .category-page-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .related-panel {
        position: static;
    }
}

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

    .hero-carousel {
        height: 78vh;
        min-height: 640px;
    }

    .hero-content {
        padding-bottom: 150px;
    }

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

    .hero-arrow {
        display: none;
    }

    .section-heading,
    .category-preview-head,
    .detail-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .feature-grid,
    .poster-grid,
    .compact-grid,
    .small-grid,
    .mini-grid,
    .category-page-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .soft-panel,
    .category-preview,
    .rank-panel,
    .related-panel,
    .detail-info-card,
    .detail-section {
        border-radius: 20px;
        padding: 20px;
    }

    .feature-poster {
        height: 210px;
    }

    .movie-row a {
        grid-template-columns: auto 92px minmax(0, 1fr);
        gap: 10px;
    }

    .movie-row figure {
        width: 92px;
        height: 64px;
    }

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

@media (max-width: 480px) {
    .nav-shell,
    .main-shell,
    .page-hero > div,
    .footer-shell {
        padding-left: 14px;
        padding-right: 14px;
    }

    .poster-card h3,
    .feature-card h3 {
        font-size: 15px;
    }

    .poster-card p,
    .feature-card p,
    .tag-line {
        display: none;
    }

    .category-tile {
        min-height: 150px;
        padding: 18px;
    }
}
