:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: #1e293b;
    --bg-card-strong: #111827;
    --line: #334155;
    --line-soft: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-soft: rgba(245, 158, 11, 0.18);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --radius: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 32rem),
        linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

.container,
.section-block {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.92);
    border-bottom: 1px solid rgba(51, 65, 85, 0.8);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #ef4444);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
}

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

.brand-copy strong,
.footer-brand {
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.brand-copy small {
    margin-top: 4px;
    color: #fde68a;
    font-size: 0.72rem;
}

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

.desktop-nav a,
.mobile-nav a {
    color: #e2e8f0;
    font-weight: 650;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover {
    color: var(--accent);
}

.site-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.site-search-form input,
.filter-panel input,
.search-hero-form input {
    width: 260px;
    border: 1px solid #475569;
    border-radius: 999px;
    padding: 12px 48px 12px 18px;
    color: #fff;
    background: rgba(30, 41, 59, 0.9);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-search-form input:focus,
.filter-panel input:focus,
.search-hero-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
    background: rgba(15, 23, 42, 0.96);
}

.site-search-form button,
.search-hero-form button {
    position: absolute;
    right: 6px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-search-form button:hover,
.search-hero-form button:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: #1e293b;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    padding: 16px;
    border-top: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.98);
}

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

.mobile-search {
    margin-bottom: 4px;
}

.mobile-search input {
    width: 100%;
}

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #0f172a;
}

.hero-stage,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    transition: opacity 0.7s ease, transform 1.2s ease;
    pointer-events: none;
}

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

.hero-overlay,
.detail-backdrop::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12)),
        linear-gradient(0deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.12) 48%, rgba(2, 6, 23, 0.72));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: var(--container);
    z-index: 2;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28);
}

.hero-content h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.hero-content p,
.page-hero p,
.detail-lead {
    width: min(700px, 100%);
    margin: 22px 0 0;
    color: #e2e8f0;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
}

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

.hero-tags span {
    padding: 7px 12px;
    border: 1px solid rgba(245, 158, 11, 0.42);
    border-radius: 999px;
    color: #fde68a;
    background: rgba(15, 23, 42, 0.56);
    backdrop-filter: blur(10px);
    font-size: 0.88rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 16px 34px rgba(245, 158, 11, 0.34);
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-ghost {
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.54);
    backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    color: #fff;
    border-color: rgba(245, 158, 11, 0.58);
    background: rgba(245, 158, 11, 0.2);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 2.2rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

.hero-dot.is-active {
    width: 36px;
    background: var(--accent);
}

.section-block {
    padding: 56px 0;
}

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

.section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.3rem);
    letter-spacing: -0.03em;
}

.section-more {
    color: #fbbf24;
    font-weight: 750;
}

.section-more:hover {
    color: #fde68a;
}

.section-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-actions button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #334155;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.section-actions button:hover {
    background: #475569;
    transform: translateY(-1px);
}

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

.featured-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 24px;
}

.featured-side {
    display: grid;
    gap: 18px;
}

.scroll-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 255px;
    gap: 20px;
    overflow-x: auto;
    padding: 6px 4px 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(30, 41, 59, 0.8);
}

.scroll-row .movie-card {
    scroll-snap-align: start;
}

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(71, 85, 105, 0.7);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.movie-card:hover {
    border-color: rgba(245, 158, 11, 0.58);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f172a;
}

.featured-main .movie-poster,
.movie-grid .movie-poster {
    aspect-ratio: 16 / 11;
}

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

.movie-card:hover .movie-poster img {
    transform: scale(1.08);
    filter: brightness(0.78);
}

.movie-poster::after {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
    transition: opacity 0.3s ease;
}

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

.movie-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 8px;
    color: #fff;
    background: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
}

.poster-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    opacity: 0;
    color: #fff;
    background: var(--accent);
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.4);
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.rank-num {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 999px;
    color: #0f172a;
    background: #fde68a;
    font-size: 0.9rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.movie-info {
    padding: 18px;
}

.movie-info h2 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    line-height: 1.35;
}

.movie-info h2 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #fff;
    transition: color 0.2s ease;
}

.movie-card:hover .movie-info h2 a {
    color: var(--accent);
}

.movie-info p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 3.1em;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.8rem;
}

.movie-meta span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 9px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.5);
}

.movie-card.is-compact .movie-poster {
    aspect-ratio: 16 / 10;
}

.movie-card.is-compact .movie-info {
    padding: 14px;
}

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

.category-card,
.category-overview-card a {
    display: block;
    min-height: 140px;
    padding: 22px;
    border: 1px solid rgba(71, 85, 105, 0.76);
    border-radius: var(--radius-sm);
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.2), transparent 10rem),
        linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.category-overview-card a:hover {
    border-color: rgba(245, 158, 11, 0.56);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.category-card span,
.category-overview-card h2 {
    display: block;
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 850;
}

.category-card p,
.category-overview-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.92rem;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.category-samples span {
    max-width: 100%;
    overflow: hidden;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.14);
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.82rem;
}

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

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

.page-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(71, 85, 105, 0.55);
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 24rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.98));
}

.small-hero {
    padding: 76px 0 64px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

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

.breadcrumb strong {
    color: #fff;
}

.filter-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid rgba(71, 85, 105, 0.7);
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, 0.7);
}

.filter-panel input {
    width: min(420px, 100%);
    border-radius: 12px;
    padding: 13px 16px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-buttons button {
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 999px;
    padding: 9px 14px;
    color: #e2e8f0;
    background: rgba(30, 41, 59, 0.8);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-buttons button:hover,
.filter-buttons button.is-active {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    padding: 78px 0;
    background: #020617;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: blur(3px) saturate(0.95);
    transform: scale(1.02);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    align-items: center;
    gap: 48px;
}

.detail-cover {
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.42);
    border-radius: 24px;
    background: #0f172a;
    box-shadow: var(--shadow);
}

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

.detail-copy {
    max-width: 760px;
}

.detail-copy h1 {
    font-size: clamp(2rem, 5vw, 4.2rem);
}

.detail-lead {
    color: #f8fafc;
}

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

.player-section {
    padding-top: 64px;
}

.player-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(71, 85, 105, 0.85);
    border-radius: 24px;
    background: #000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.78));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 18px 44px rgba(245, 158, 11, 0.38);
    font-size: 2rem;
    transform: translateX(3px);
}

.player-overlay strong {
    font-size: 1.12rem;
    letter-spacing: 0.06em;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}

.story-card,
.side-panel {
    border: 1px solid rgba(71, 85, 105, 0.74);
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, 0.75);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
}

.story-card {
    padding: 30px;
}

.story-card h2,
.side-panel h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1.35rem;
}

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

.story-card p {
    margin: 0;
    color: #dbeafe;
    font-size: 1rem;
    line-height: 2;
}

.side-panel {
    align-self: start;
    padding: 24px;
}

.side-panel dl {
    margin: 0;
}

.side-panel dt {
    margin-top: 16px;
    color: #94a3b8;
    font-size: 0.84rem;
}

.side-panel dt:first-of-type {
    margin-top: 0;
}

.side-panel dd {
    margin: 5px 0 0;
    color: #fff;
    line-height: 1.6;
}

.search-hero-form {
    position: relative;
    display: flex;
    width: min(560px, 100%);
    margin-top: 28px;
}

.search-hero-form input {
    width: 100%;
    padding-right: 112px;
}

.search-hero-form button {
    width: 96px;
}

.site-footer {
    margin-top: 48px;
    border-top: 1px solid rgba(71, 85, 105, 0.65);
    background: rgba(2, 6, 23, 0.92);
}

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

.footer-grid p {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-grid h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding: 18px 16px 26px;
    color: #64748b;
    text-align: center;
    border-top: 1px solid rgba(71, 85, 105, 0.35);
}

.is-hidden-by-filter {
    display: none !important;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 40px;
    border: 1px solid rgba(71, 85, 105, 0.74);
    border-radius: var(--radius-sm);
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.72);
    text-align: center;
}

@media (max-width: 1120px) {
    .desktop-nav,
    .header-inner > .site-search-form {
        display: none;
    }

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

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

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

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

    .detail-cover {
        width: min(340px, 100%);
    }
}

@media (max-width: 760px) {
    .container,
    .section-block {
        width: min(100% - 22px, var(--container));
    }

    .header-inner {
        min-height: 64px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

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

    .brand-copy small {
        font-size: 0.65rem;
    }

    .hero-slider {
        height: 560px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 88px;
    }

    .hero-content h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 2.3rem;
    }

    .hero-content p,
    .page-hero p,
    .detail-lead {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-actions {
        width: 100%;
    }

    .btn {
        flex: 1 1 140px;
    }

    .section-block {
        padding: 42px 0;
    }

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

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

    .scroll-row {
        grid-auto-columns: 78%;
    }

    .small-hero,
    .detail-hero {
        padding: 54px 0 46px;
    }

    .detail-hero-inner {
        gap: 28px;
    }

    .detail-cover {
        width: min(250px, 86%);
    }

    .story-card,
    .side-panel {
        padding: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 34px 0;
    }
}
