:root {
    color-scheme: light;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --yellow-500: #eab308;
    --red-500: #ef4444;
    --green-500: #22c55e;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-soft: 0 18px 45px rgba(120, 53, 15, 0.16);
    --shadow-card: 0 12px 28px rgba(17, 24, 39, 0.12);
    --radius-xl: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background: linear-gradient(135deg, var(--amber-50), #fff7ed 45%, #fefce8);
    color: var(--gray-800);
}

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: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(253, 230, 138, 0.76);
    box-shadow: 0 8px 24px rgba(120, 53, 15, 0.08);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--yellow-500), var(--amber-500), var(--orange-500));
    box-shadow: 0 12px 22px rgba(217, 119, 6, 0.28);
    transition: transform 0.28s ease;
}

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

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong,
.footer-brand {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-600), var(--yellow-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy small {
    margin-top: 3px;
    color: var(--gray-600);
    font-size: 12px;
}

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

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--gray-700);
    font-weight: 700;
    transition: 0.24s ease;
}

.nav-link:hover,
.nav-link.active {
    background: var(--amber-100);
    color: var(--amber-700, #b45309);
}

.nav-toggle {
    display: none;
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--amber-100);
    color: var(--gray-800);
    cursor: pointer;
}

.top-search {
    position: relative;
    flex: 0 1 290px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 6px;
    border: 1px solid var(--amber-200);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(217, 119, 6, 0.1);
}

.top-search input,
.large-search input,
.filter-bar input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--gray-800);
}

.top-search button,
.large-search button {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    color: white;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    cursor: pointer;
    font-weight: 800;
}

.global-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    max-height: 360px;
    overflow: auto;
    padding: 8px;
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--amber-200);
}

.global-results.open {
    display: grid;
    gap: 6px;
}

.global-results a {
    display: grid;
    gap: 3px;
    padding: 10px;
    border-radius: 12px;
}

.global-results a:hover {
    background: var(--amber-50);
}

.global-results strong {
    color: var(--gray-900);
}

.global-results span {
    color: var(--gray-500);
    font-size: 12px;
}

.hero-section {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 36px;
    padding: 76px max(24px, calc((100vw - 1180px) / 2)) 64px;
    color: white;
}

.hero-bg,
.hero-bg img,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    background:
        radial-gradient(circle at 78% 28%, rgba(245, 158, 11, 0.32), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58) 50%, rgba(0, 0, 0, 0.22));
}

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

.hero-content {
    max-width: 780px;
    display: grid;
    gap: 20px;
}

.eyebrow {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--amber-500);
    color: white;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.3);
}

.hero-content h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.hero-content h2 {
    margin: 0;
    color: #fde68a;
    font-size: clamp(26px, 4vw, 48px);
    line-height: 1.06;
}

.hero-content p,
.page-hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    line-height: 1.78;
}

.hero-meta,
.detail-meta,
.meta-row,
.movie-tags,
.hero-cats,
.hero-actions,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-meta span,
.detail-meta span,
.movie-tags span,
.tag-row a {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: inherit;
    font-size: 13px;
    font-weight: 800;
}

.hero-cats a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transition: 0.22s ease;
}

.hero-cats a:hover {
    background: rgba(245, 158, 11, 0.88);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.24s ease;
}

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

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

.btn.ghost-dark {
    color: var(--amber-700, #b45309);
    background: var(--amber-100);
}

.btn.small {
    min-height: 40px;
    padding-inline: 14px;
}

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

.hero-side {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.hero-side > strong {
    font-size: 20px;
}

.search-band,
.content-section,
.detail-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.search-band {
    margin-top: -34px;
    position: relative;
    z-index: 2;
}

.search-panel {
    display: grid;
    gap: 12px;
    padding: 26px;
    border-radius: 28px;
    background: white;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--amber-100);
}

.search-panel h2,
.section-head h2,
.rank-panel h2,
.detail-main h1,
.article-block h2,
.sticky-panel h2,
.category-overview-card h2,
.footer-grid h2 {
    margin: 0;
    color: var(--gray-800);
}

.search-panel p,
.section-head p {
    margin: 0;
    color: var(--gray-600);
}

.large-search {
    position: relative;
    display: flex;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--amber-200);
    border-radius: 999px;
    background: var(--amber-50);
}

.large-search input {
    padding: 0 12px;
}

.content-section {
    padding: 64px 0 0;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--amber-100), white);
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.16);
    font-size: 26px;
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 22px;
}

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

.poster-grid.compact {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 18px;
}

.poster-grid.category-list {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.movie-card {
    display: grid;
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow-card);
    transition: 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(17, 24, 39, 0.18);
}

.movie-poster {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), #fed7aa);
}

.movie-poster img,
.wide-thumb img,
.category-card img,
.ranking-row img,
.category-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card:hover img,
.wide-card:hover img,
.category-card:hover img,
.ranking-row:hover img {
    transform: scale(1.08);
}

.duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 5px 8px;
    border-radius: 8px;
    color: white;
    background: rgba(0, 0, 0, 0.72);
    font-size: 12px;
    font-weight: 800;
}

.hover-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: white;
    font-size: 34px;
    background: rgba(0, 0, 0, 0.34);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.movie-card:hover .hover-play {
    opacity: 1;
}

.movie-info {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.movie-info strong,
.wide-info strong,
.rank-copy strong {
    color: var(--gray-900);
    line-height: 1.35;
}

.movie-desc {
    display: -webkit-box;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-tags span {
    color: var(--amber-700, #b45309);
    background: var(--amber-100);
    padding: 5px 8px;
    font-size: 12px;
}

.meta-row {
    color: var(--gray-500);
    font-size: 12px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    background: var(--gray-900);
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.1));
}

.category-card span {
    position: absolute;
    inset-inline: 18px;
    bottom: 18px;
    z-index: 1;
    display: grid;
    gap: 8px;
    color: white;
}

.category-card strong {
    font-size: 24px;
}

.category-card em {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    line-height: 1.55;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}

.rank-panel,
.sticky-panel {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 10px;
    padding: 22px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow-soft);
}

.rank-panel a {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px 10px;
    padding: 10px;
    border-radius: 14px;
    transition: 0.2s ease;
}

.rank-panel a:hover {
    background: var(--amber-50);
}

.rank-panel span {
    grid-row: span 2;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: white;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    font-weight: 900;
}

.rank-panel strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-panel em {
    color: var(--gray-500);
    font-size: 12px;
    font-style: normal;
}

.rank-more {
    margin-top: 6px;
    text-align: center;
    color: var(--amber-700, #b45309);
    font-weight: 900;
}

.wide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.wide-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow-card);
    transition: 0.24s ease;
}

.wide-card:hover {
    transform: translateY(-3px);
}

.wide-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
    background: var(--amber-100);
}

.play-dot {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.wide-card:hover .play-dot {
    opacity: 1;
}

.wide-info {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.wide-info em {
    display: -webkit-box;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-hero {
    min-height: 360px;
    display: grid;
    align-items: center;
    padding: 64px max(24px, calc((100vw - 1180px) / 2));
    color: white;
    background:
        radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.18), transparent 25%),
        linear-gradient(135deg, #78350f, #9a3412 54%, #ca8a04);
}

.page-hero.soft {
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.24), transparent 24%),
        linear-gradient(135deg, #92400e, #c2410c 50%, #eab308);
}

.category-hero .hero-cats {
    margin-top: 24px;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding: 14px;
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow-card);
}

.filter-bar label {
    flex: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 999px;
    background: var(--amber-50);
    border: 1px solid var(--amber-200);
}

.filter-bar label span {
    color: var(--amber-700, #b45309);
    font-weight: 900;
}

.category-overview-grid {
    display: grid;
    gap: 22px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 18px;
    border-radius: 28px;
    background: white;
    box-shadow: var(--shadow-card);
}

.category-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 110px 110px;
    gap: 8px;
    overflow: hidden;
    border-radius: 20px;
}

.category-overview-card p {
    color: var(--gray-600);
    line-height: 1.8;
}

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

.mini-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--amber-100);
    color: var(--amber-700, #b45309);
    font-size: 13px;
    font-weight: 800;
}

.ranking-list {
    display: grid;
    gap: 12px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 54px 120px minmax(0, 1fr) 88px;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow-card);
    transition: 0.24s ease;
}

.ranking-row:hover {
    transform: translateY(-3px);
}

.rank-no {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: white;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    font-weight: 900;
}

.ranking-row img {
    width: 120px;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    object-fit: cover;
}

.rank-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.rank-copy em {
    overflow: hidden;
    color: var(--gray-600);
    font-size: 14px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-copy span,
.rank-score {
    color: var(--gray-500);
    font-size: 13px;
}

.rank-score {
    justify-self: end;
    color: var(--orange-600);
    font-weight: 900;
}

.detail-shell {
    padding: 34px 0 0;
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--gray-600);
    font-size: 14px;
}

.crumbs a {
    color: var(--amber-700, #b45309);
    font-weight: 800;
}

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

.detail-main,
.detail-side .sticky-panel {
    min-width: 0;
}

.player-card,
.article-block,
.detail-main,
.sticky-panel {
    border-radius: 26px;
    background: white;
    box-shadow: var(--shadow-soft);
}

.detail-main {
    padding: 18px;
}

.player-card {
    overflow: hidden;
    padding: 0;
    background: var(--gray-900);
}

.player-box {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: contain;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: white;
    cursor: pointer;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.28));
    transition: opacity 0.26s ease, visibility 0.26s ease;
}

.play-overlay span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    padding-left: 5px;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 16px 38px rgba(245, 158, 11, 0.38);
    font-size: 34px;
}

.play-overlay strong {
    font-size: 20px;
}

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

.player-message {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    display: none;
    padding: 12px 14px;
    border-radius: 14px;
    color: white;
    background: rgba(239, 68, 68, 0.9);
    text-align: center;
}

.player-message.open {
    display: block;
}

.detail-main h1 {
    margin-top: 24px;
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -0.04em;
}

.detail-meta {
    margin: 16px 0;
}

.detail-meta span {
    color: var(--amber-700, #b45309);
    background: var(--amber-100);
}

.lead-text {
    color: var(--gray-700);
    font-size: 18px;
    line-height: 1.85;
}

.tag-row {
    margin: 18px 0 22px;
}

.tag-row a {
    color: var(--amber-700, #b45309);
    background: var(--amber-100);
}

.article-block {
    margin-top: 16px;
    padding: 22px;
    box-shadow: none;
    border: 1px solid var(--amber-100);
}

.article-block p {
    margin-bottom: 0;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.95;
}

.side-links {
    display: grid;
    gap: 12px;
}

.related-section {
    width: 100%;
}

.site-footer {
    margin-top: 74px;
    padding: 48px max(24px, calc((100vw - 1180px) / 2)) 24px;
    color: white;
    background: linear-gradient(90deg, #78350f, #9a3412, #713f12);
}

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

.footer-grid p {
    max-width: 480px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.footer-grid h2 {
    color: #fde68a;
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-grid a:not(.footer-brand) {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
    color: #fde68a;
    background: none;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
}

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

@media (max-width: 1060px) {
    .hero-section,
    .detail-grid,
    .two-col {
        grid-template-columns: 1fr;
    }

    .hero-side,
    .rank-panel,
    .sticky-panel {
        position: relative;
        top: auto;
    }

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

@media (max-width: 820px) {
    .nav-wrap {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 0;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
    }

    .nav-links {
        order: 4;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        padding: 12px;
        border-radius: 18px;
        background: white;
    }

    .nav-links.open {
        display: flex;
    }

    .top-search {
        order: 3;
        flex: 1 0 100%;
    }

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

    .hero-side {
        display: none;
    }

    .hero-content p,
    .page-hero p {
        font-size: 16px;
    }

    .poster-grid,
    .poster-grid.six,
    .poster-grid.compact,
    .poster-grid.category-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .wide-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .ranking-row {
        grid-template-columns: 44px 82px minmax(0, 1fr);
    }

    .ranking-row img {
        width: 82px;
    }

    .rank-score {
        display: none;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

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

@media (max-width: 520px) {
    .brand-copy strong {
        font-size: 20px;
    }

    .hero-actions,
    .large-search {
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
    }

    .large-search button {
        min-height: 44px;
    }

    .movie-info {
        padding: 11px;
    }

    .movie-desc,
    .movie-tags {
        display: none;
    }

    .wide-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .play-overlay span {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }
}
