/* Generated static site styles. Kept expanded for readability. */
:root {
    --site-bg: #020617;
    --site-bg-soft: #0f172a;
    --site-panel: rgba(15, 23, 42, 0.86);
    --site-panel-strong: rgba(15, 23, 42, 0.96);
    --site-line: rgba(148, 163, 184, 0.22);
    --site-text: #f8fafc;
    --site-muted: #cbd5e1;
    --site-dim: #94a3b8;
    --site-accent: #f59e0b;
    --site-accent-2: #fb923c;
    --site-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --site-radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    min-height: 100vh;
    color: var(--site-text);
    background:
        radial-gradient(circle at 12% 8%, rgba(245, 158, 11, 0.18), transparent 28rem),
        radial-gradient(circle at 88% 18%, rgba(251, 146, 60, 0.11), transparent 24rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.site-body a {
    color: inherit;
    text-decoration: none;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--site-accent);
    color: #111827;
}

.skip-link:focus {
    left: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.site-logo__mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #111827;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-2));
    box-shadow: 0 16px 35px rgba(245, 158, 11, 0.28);
}

.site-logo__text {
    font-size: 1.08rem;
}

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

.nav-link,
.nav-dropdown > button {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--site-muted);
    background: transparent;
    font: inherit;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-dropdown:hover > button {
    color: #fff;
    border-color: rgba(245, 158, 11, 0.35);
    background: rgba(245, 158, 11, 0.12);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 180px;
    padding: 10px;
    border: 1px solid var(--site-line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--site-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--site-muted);
}

.nav-dropdown__menu a:hover {
    color: #fff;
    background: rgba(245, 158, 11, 0.12);
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.78);
}

.mobile-menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.hero-slider {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

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

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 900ms ease;
}

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

.hero-slide__background {
    background-image:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.68) 42%, rgba(2, 6, 23, 0.22) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.2) 48%, rgba(2, 6, 23, 0.72) 100%),
        var(--hero-image),
        radial-gradient(circle at 70% 35%, rgba(245, 158, 11, 0.36), rgba(15, 23, 42, 0.86) 48%, rgba(2, 6, 23, 1) 100%);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--site-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-slide h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 5.8rem);
    line-height: 0.96;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.hero-summary {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--site-muted);
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.9;
}

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

.hero-tags {
    margin-top: 24px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 999px;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.1);
    font-size: 0.78rem;
}

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

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
    color: #111827;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-2));
    box-shadow: 0 18px 38px rgba(245, 158, 11, 0.22);
}

.secondary-button {
    color: #fff;
    border: 1px solid rgba(148, 163, 184, 0.32);
    background: rgba(15, 23, 42, 0.74);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(10px);
    font-size: 2rem;
    line-height: 1;
}

.hero-control--prev {
    left: 24px;
}

.hero-control--next {
    right: 24px;
}

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

.hero-dot {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.hero-dot.is-active {
    background: var(--site-accent);
}

.home-search-band {
    position: relative;
    z-index: 5;
    width: min(1180px, calc(100% - 32px));
    margin: -54px auto 0;
}

.home-search-band__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: var(--site-shadow);
    backdrop-filter: blur(18px);
}

.home-search-band h2,
.section-heading h2,
.sub-hero h1,
.detail-info h1,
.detail-content h2 {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.home-search-band h2 {
    font-size: clamp(1.4rem, 2.6vw, 2.3rem);
}

.home-search-band p,
.sub-hero p,
.category-overview-card p,
.detail-one-line,
.detail-content p,
.player-note,
.site-footer p {
    color: var(--site-muted);
    line-height: 1.85;
}

.home-search-field,
.filter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--site-dim);
    font-size: 0.86rem;
}

.home-search-field input,
.filter-field input,
.filter-field select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 16px;
    color: #fff;
    background: rgba(2, 6, 23, 0.72);
    outline: none;
}

.home-search-field input:focus,
.filter-field input:focus,
.filter-field select:focus {
    border-color: rgba(245, 158, 11, 0.72);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.13);
}

.content-section,
.filter-panel,
.player-section,
.detail-content,
.prev-next-nav {
    width: min(1280px, calc(100% - 32px));
    margin: 72px auto 0;
}

.section-heading {
    margin-bottom: 24px;
}

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

.section-heading h2 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.compact-heading {
    margin-bottom: 16px;
}

.text-link {
    color: var(--site-accent);
    font-weight: 800;
}

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

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--site-radius);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.38);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.poster-box {
    position: relative;
    display: flex;
    min-height: 280px;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    isolation: isolate;
    background-image:
        linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(2, 6, 23, 0.36) 40%, rgba(2, 6, 23, 0.94) 100%),
        var(--poster-image),
        linear-gradient(135deg, rgba(245, 158, 11, 0.32), rgba(15, 23, 42, 1) 58%, rgba(30, 41, 59, 1));
    background-position: center;
    background-size: cover;
}

.poster-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 15rem),
        linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(15, 23, 42, 0.48));
}

.poster-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, 0.16) 45%, transparent 70%);
    opacity: 0;
    transform: translateX(-35%);
    transition: opacity 220ms ease, transform 520ms ease;
}

.movie-card:hover .poster-shine,
.detail-poster:hover .poster-shine {
    opacity: 1;
    transform: translateX(35%);
}

.poster-title {
    position: relative;
    z-index: 2;
    font-size: 1.18rem;
    line-height: 1.28;
    font-weight: 900;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.poster-meta {
    position: relative;
    z-index: 2;
    margin-top: 7px;
    color: #fde68a;
    font-size: 0.82rem;
}

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.play-chip {
    top: 12px;
    right: 12px;
    color: #111827;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-2));
}

.rank-badge {
    top: 12px;
    left: 12px;
    color: #fff;
    background: rgba(220, 38, 38, 0.86);
}

.movie-card__body {
    padding: 16px;
}

.movie-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--site-dim);
    font-size: 0.78rem;
}

.movie-card__title {
    margin: 8px 0 0;
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 900;
}

.movie-card__title a:hover {
    color: #fde68a;
}

.movie-card__desc {
    min-height: 50px;
    margin: 10px 0 14px;
    color: var(--site-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.compact-grid .poster-box {
    min-height: 230px;
}

.compact-grid .movie-card__desc {
    min-height: 44px;
    font-size: 0.84rem;
}

.sub-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    background:
        radial-gradient(circle at 20% 12%, rgba(245, 158, 11, 0.16), transparent 26rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
}

.sub-hero__inner,
.detail-hero__inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 76px 0 58px;
}

.sub-hero h1 {
    max-width: 840px;
    font-size: clamp(2rem, 5vw, 4.5rem);
}

.sub-hero p {
    max-width: 860px;
    margin: 18px 0 0;
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--site-dim);
    font-size: 0.88rem;
}

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

.filter-panel {
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.filter-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 16px;
}

.filter-result {
    margin: 16px 0 0;
    color: var(--site-dim);
}

.empty-state {
    padding: 28px;
    border: 1px dashed rgba(245, 158, 11, 0.32);
    border-radius: 20px;
    color: var(--site-muted);
    text-align: center;
}

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

.category-overview-card {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.76);
    overflow: hidden;
}

.category-overview-card__main {
    display: block;
    min-height: 230px;
    padding: 24px;
    background:
        radial-gradient(circle at 85% 15%, rgba(245, 158, 11, 0.18), transparent 13rem),
        linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.86));
}

.category-overview-card h2 {
    margin: 14px 0 10px;
    font-size: 1.6rem;
    font-weight: 900;
}

.category-count {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    color: #111827;
    background: var(--site-accent);
    font-size: 0.82rem;
    font-weight: 900;
}

.category-enter {
    display: inline-flex;
    margin-top: 18px;
    color: #fde68a;
    font-weight: 900;
}

.category-preview-links {
    display: grid;
    gap: 8px;
    padding: 18px 24px 24px;
}

.category-preview-links a {
    color: var(--site-muted);
    font-size: 0.92rem;
}

.category-preview-links a:hover {
    color: var(--site-accent);
}

.detail-hero__grid {
    display: grid;
    grid-template-columns: minmax(220px, 340px) 1fr;
    gap: 36px;
    align-items: center;
}

.detail-poster {
    min-height: 470px;
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 30px;
    box-shadow: var(--site-shadow);
}

.detail-info h1 {
    font-size: clamp(2.2rem, 5vw, 5.2rem);
    line-height: 1;
}

.detail-one-line {
    max-width: 860px;
    margin: 22px 0 0;
    font-size: 1.08rem;
}

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

.detail-meta-grid span {
    min-height: 78px;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 18px;
    color: var(--site-muted);
    background: rgba(2, 6, 23, 0.38);
}

.detail-meta-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--site-accent);
    font-size: 0.8rem;
}

.detail-tags {
    margin-top: 20px;
}

.player-section {
    scroll-margin-top: 96px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 30px;
    background: #000;
    box-shadow: var(--site-shadow);
    aspect-ratio: 16 / 9;
}

.video-player {
    width: 100%;
    height: 100%;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background:
        radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 18rem),
        rgba(2, 6, 23, 0.58);
    font-size: 1rem;
    font-weight: 900;
    transition: opacity 180ms ease, visibility 180ms ease;
}

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

.play-overlay__icon {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111827;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-2));
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.25);
}

.player-note {
    margin: 14px 0 0;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.detail-content section {
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.76);
}

.detail-content h2 {
    margin-bottom: 14px;
    font-size: 1.5rem;
}

.prev-next-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.prev-next-nav a {
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    color: var(--site-muted);
    background: rgba(15, 23, 42, 0.72);
}

.prev-next-nav a:last-child {
    justify-content: flex-end;
    text-align: right;
}

.prev-next-nav a:hover {
    color: #fff;
    border-color: rgba(245, 158, 11, 0.32);
}

.site-footer {
    margin-top: 90px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(2, 6, 23, 0.72);
}

.site-footer__inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1.2fr;
    gap: 28px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
}

.footer-links,
.footer-category-links {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 10px;
}

.footer-links a,
.footer-category-links a {
    padding: 8px 10px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 999px;
    color: var(--site-muted);
    font-size: 0.88rem;
}

.footer-links a:hover,
.footer-category-links a:hover {
    color: #fff;
    border-color: rgba(245, 158, 11, 0.34);
}

[data-movie-card].is-hidden {
    display: none;
}

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

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

    .home-search-band__inner,
    .filter-grid,
    .detail-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .site-header__inner {
        flex-wrap: wrap;
        min-height: 66px;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        width: 100%;
        padding: 0 0 16px;
        flex-wrap: wrap;
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-dropdown__menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 8px;
    }

    .nav-dropdown:hover .nav-dropdown__menu,
    .nav-dropdown:focus-within .nav-dropdown__menu {
        display: block;
    }

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

    .hero-slide__content {
        padding-top: 90px;
    }

    .hero-control {
        display: none;
    }

    .home-search-band {
        margin-top: 24px;
    }

    .home-search-band__inner,
    .filter-grid,
    .detail-hero__grid,
    .detail-content,
    .prev-next-nav,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

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

    .detail-poster {
        min-height: 420px;
    }

    .prev-next-nav a:last-child {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 540px) {
    .site-header__inner,
    .hero-slide__content,
    .content-section,
    .filter-panel,
    .player-section,
    .detail-content,
    .prev-next-nav,
    .sub-hero__inner,
    .detail-hero__inner,
    .site-footer__inner {
        width: min(100% - 22px, 1280px);
    }

    .movie-grid,
    .movie-grid.compact-grid {
        grid-template-columns: 1fr;
    }

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

    .poster-box,
    .compact-grid .poster-box {
        min-height: 250px;
    }

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

    .hero-slide h1,
    .detail-info h1 {
        letter-spacing: -0.03em;
    }
}
