:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.78);
    --bg-card-solid: #111827;
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --accent-deep: #ea580c;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --max: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 32rem),
        radial-gradient(circle at top right, rgba(234, 88, 12, 0.16), transparent 28rem),
        linear-gradient(180deg, #020617 0%, #0f172a 52%, #020617 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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(2, 6, 23, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-deep));
    color: #111827;
    box-shadow: 0 14px 36px rgba(245, 158, 11, 0.34);
}

.logo-text,
.footer-logo {
    font-size: 22px;
    background: linear-gradient(90deg, #fde68a, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.nav-dropdown > button {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    color: var(--muted-strong);
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown:hover > button {
    color: var(--accent-light);
    background: rgba(245, 158, 11, 0.12);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 170px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    display: block;
    padding: 9px 10px;
    border-radius: 10px;
    color: var(--muted-strong);
}

.dropdown-menu a:hover {
    color: var(--accent-light);
    background: rgba(148, 163, 184, 0.1);
}

.header-search,
.mobile-search,
.big-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.big-search input,
.filter-panel input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.86);
    color: var(--text);
    outline: 0;
    transition: 0.25s ease;
}

.header-search input {
    width: 230px;
    padding: 10px 12px;
}

.header-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.filter-panel input:focus {
    border-color: rgba(251, 191, 36, 0.8);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.header-search button,
.mobile-search button,
.big-search button,
.primary-btn,
.ghost-btn,
.section-more,
.filter-years button,
.filter-types button {
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.25s ease;
}

.header-search button,
.mobile-search button,
.big-search button,
.primary-btn {
    color: #111827;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-deep));
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.28);
}

.header-search button,
.mobile-search button {
    padding: 10px 14px;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(15, 23, 42, 0.7);
}

.mobile-nav {
    display: none;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px 18px;
    border-top: 1px solid var(--line);
}

main {
    min-height: 60vh;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    border-bottom: 1px solid var(--line);
}

.hero-slides,
.hero-slide {
    min-height: 680px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 380px;
    gap: 48px;
    align-items: center;
    padding: 96px max(24px, calc((100vw - var(--max)) / 2)) 132px;
    opacity: 0;
    transform: scale(1.03);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.9s ease;
}

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

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg {
    object-fit: cover;
    filter: blur(2px) saturate(1.12);
    opacity: 0.35;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.68) 50%, rgba(2, 6, 23, 0.92) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 1) 0%, transparent 44%);
}

.hero-content,
.hero-poster,
.hero-dots,
.hero-thumbs {
    position: relative;
    z-index: 2;
}

.hero-kicker {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 14px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #fed7aa;
    background: rgba(245, 158, 11, 0.14);
    border: 1px solid rgba(245, 158, 11, 0.28);
    font-weight: 800;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(38px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

.hero-meta,
.detail-meta,
.movie-meta {
    color: var(--muted);
}

.hero-meta {
    margin: 22px 0 14px;
    font-weight: 700;
}

.hero-summary {
    max-width: 760px;
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.9;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.2);
    font-size: 12px;
    font-weight: 700;
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
}

.primary-btn:hover,
.header-search button:hover,
.mobile-search button:hover,
.big-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 46px rgba(245, 158, 11, 0.36);
}

.ghost-btn {
    color: var(--text);
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.72);
}

.ghost-btn:hover,
.section-more:hover {
    border-color: rgba(251, 191, 36, 0.52);
    color: var(--accent-light);
    background: rgba(245, 158, 11, 0.1);
}

.hero-poster {
    display: block;
    border-radius: 30px;
    padding: 10px;
    background: linear-gradient(160deg, rgba(251, 191, 36, 0.5), rgba(15, 23, 42, 0.2));
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4.15;
    object-fit: cover;
    border-radius: 22px;
}

.hero-dots {
    position: absolute;
    left: max(24px, calc((100vw - var(--max)) / 2));
    bottom: 82px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 44px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.34);
    cursor: pointer;
}

.hero-dot.active {
    background: linear-gradient(90deg, var(--accent-light), var(--accent-deep));
}

.hero-thumbs {
    position: absolute;
    right: max(24px, calc((100vw - var(--max)) / 2));
    bottom: 32px;
    display: flex;
    gap: 10px;
}

.hero-thumbs a {
    width: 112px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.72);
    color: var(--muted-strong);
    font-size: 12px;
    backdrop-filter: blur(12px);
}

.hero-thumbs img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 6px;
}

.search-band,
.content-section,
.page-hero,
.breadcrumb,
.detail-hero,
.player-section {
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
}

.search-band {
    margin-top: -46px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(251, 191, 36, 0.24);
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-band h2,
.section-heading h2,
.footer-inner h2,
.detail-text h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.03em;
}

.search-band p,
.section-heading p,
.page-hero p,
.detail-info p,
.detail-text p,
.site-footer p {
    color: var(--muted-strong);
    line-height: 1.85;
}

.big-search input {
    padding: 15px 16px;
}

.big-search button {
    min-height: 52px;
    padding: 0 20px;
    white-space: nowrap;
}

.content-section {
    padding: 58px 24px 0;
}

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

.section-heading p {
    margin: 8px 0 0;
}

.section-more {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    color: var(--muted-strong);
    background: rgba(15, 23, 42, 0.56);
}

.movie-grid,
.category-grid,
.category-overview-grid,
.ranking-grid,
.side-grid {
    display: grid;
    gap: 18px;
}

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

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

.category-card,
.movie-card,
.category-overview-card,
.wide-card,
.filter-panel,
.detail-hero,
.video-shell,
.detail-text {
    border: 1px solid var(--line);
    background: var(--bg-card);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 22px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.24;
    transition: 0.45s ease;
}

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

.category-card span,
.category-card p {
    position: relative;
    z-index: 2;
}

.category-card span {
    font-size: 24px;
    font-weight: 900;
}

.category-card p {
    margin: 10px 0 0;
    color: var(--muted-strong);
    line-height: 1.7;
}

.category-card:hover img {
    transform: scale(1.08);
    opacity: 0.36;
}

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.42);
    box-shadow: 0 24px 68px rgba(0, 0, 0, 0.34);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0f172a;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 3 / 4.05;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

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

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #111827;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-deep));
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    transition: 0.25s ease;
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.38);
}

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

.rank-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #111827;
    background: linear-gradient(135deg, #fde68a, #fb923c);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

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

.movie-card h3 {
    margin: 0 0 8px;
    min-height: 48px;
    font-size: 16px;
    line-height: 1.45;
}

.movie-card h3 a:hover,
.wide-card h3 a:hover,
.category-overview-card h2 a:hover {
    color: var(--accent-light);
}

.movie-meta,
.movie-line {
    margin: 0;
    font-size: 13px;
}

.movie-line {
    min-height: 58px;
    margin: 10px 0 12px;
    color: var(--muted-strong);
    line-height: 1.65;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    gap: 34px;
}

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

.wide-card {
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius-md);
}

.wide-poster img {
    width: 92px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
}

.wide-info h3 {
    margin: 4px 0 6px;
    font-size: 18px;
}

.wide-info p {
    margin: 0 0 6px;
    color: var(--muted-strong);
    line-height: 1.6;
    font-size: 14px;
}

.wide-rank {
    display: inline-grid;
    place-items: center;
    min-width: 30px;
    height: 30px;
    border-radius: 10px;
    color: #111827;
    background: linear-gradient(135deg, #fde68a, #fb923c);
    font-weight: 900;
}

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

.page-main {
    padding-bottom: 64px;
}

.page-hero {
    margin-top: 34px;
    padding: 70px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(15, 23, 42, 0.76)),
        rgba(15, 23, 42, 0.82);
    box-shadow: var(--shadow);
}

.compact-hero h1,
.category-hero h1 {
    max-width: 920px;
}

.compact-hero p,
.category-hero p {
    max-width: 780px;
    margin: 18px 0 0;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border-radius: var(--radius-lg);
}

.category-cover img {
    width: 150px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 15px;
}

.category-overview-card h2 {
    margin: 4px 0 10px;
}

.category-overview-card p {
    color: var(--muted-strong);
    line-height: 1.75;
}

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

.category-samples a {
    padding: 7px 9px;
    border-radius: 999px;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.12);
}

.filter-panel {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: var(--radius-lg);
}

.filter-panel input {
    padding: 14px 16px;
}

.filter-years,
.filter-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-years button,
.filter-types button {
    padding: 9px 12px;
    color: var(--muted-strong);
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.filter-years button.active,
.filter-types button.active,
.filter-years button:hover,
.filter-types button:hover {
    color: #111827;
    background: linear-gradient(135deg, #fde68a, #fb923c);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    padding: 30px 24px 0;
    color: var(--muted);
}

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

.detail-hero {
    margin-top: 22px;
    padding: 28px;
    border-radius: var(--radius-xl);
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 30px;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4.1;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.detail-info h1 {
    font-size: clamp(34px, 5vw, 62px);
}

.detail-line {
    font-size: 18px;
    color: #fde68a !important;
}

.player-section {
    padding: 48px 24px 0;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.18), rgba(0, 0, 0, 0.68));
    cursor: pointer;
}

.player-cover span {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #111827;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-deep));
    font-size: 30px;
    box-shadow: 0 22px 54px rgba(245, 158, 11, 0.4);
}

.player-cover b {
    font-size: 20px;
}

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

.detail-text {
    padding: 28px;
    border-radius: var(--radius-lg);
}

.detail-text h2 + p {
    margin-top: 10px;
}

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

.site-footer {
    margin-top: 74px;
    background: rgba(2, 6, 23, 0.94);
    border-top: 1px solid var(--line);
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 44px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.6fr) minmax(220px, 0.8fr);
    gap: 34px;
}

.footer-inner a {
    display: block;
    margin: 8px 0;
    color: var(--muted-strong);
}

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

.footer-bottom {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 24px 28px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

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

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

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

    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

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

@media (max-width: 900px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

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

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

    .mobile-nav .nav-link {
        width: 100%;
    }

    .hero-carousel,
    .hero-slides,
    .hero-slide {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        padding-top: 80px;
        padding-bottom: 160px;
    }

    .hero-poster {
        display: none;
    }

    .hero-thumbs {
        left: 24px;
        right: 24px;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .search-band {
        grid-template-columns: 1fr;
        margin-left: 18px;
        margin-right: 18px;
    }

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

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

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

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

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

@media (max-width: 640px) {
    .header-inner {
        padding: 12px 16px;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero-content h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 36px;
    }

    .hero-summary {
        font-size: 16px;
    }

    .content-section,
    .player-section,
    .breadcrumb {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .movie-grid,
    .related-grid,
    .side-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

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

    .movie-line {
        display: none;
    }

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

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

    .category-cover img,
    .wide-poster img {
        width: 96px;
    }

    .page-hero,
    .detail-hero,
    .detail-text {
        margin-left: 16px;
        margin-right: 16px;
        padding: 22px;
    }
}
