:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-strong: rgba(30, 41, 59, 0.92);
    --line: rgba(148, 163, 184, 0.22);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-2: #64748b;
    --cyan: #22d3ee;
    --blue: #38bdf8;
    --cyan-dark: #0891b2;
    --accent: #67e8f9;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.16), transparent 36rem),
        radial-gradient(circle at 90% 8%, rgba(37, 99, 235, 0.16), transparent 32rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    color: var(--text);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

img {
    display: block;
    width: 100%;
    height: auto;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.94));
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.header-inner {
    max-width: 1440px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(37, 99, 235, 0.34));
    color: var(--cyan);
    box-shadow: inset 0 0 0 1px rgba(103, 232, 249, 0.3), 0 0 28px rgba(34, 211, 238, 0.18);
}

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

.desktop-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #cbd5e1;
    font-size: 14px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
    transform: translateY(-1px);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(360px, 28vw);
    padding: 6px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.76);
}

.header-search input,
.mobile-panel input,
.filter-bar input,
.filter-bar select,
.search-page-form input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.header-search input {
    padding: 6px 8px 6px 12px;
    font-size: 14px;
}

.header-search button,
.mobile-panel button,
.search-page-form button {
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    color: #06222c;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(148, 163, 184, 0.28);
    color: var(--text);
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.8);
}

.mobile-panel {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 18px;
    display: grid;
    gap: 10px;
}

.mobile-panel[hidden] {
    display: none;
}

.mobile-panel a,
.mobile-panel form {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.mobile-panel form {
    display: flex;
    gap: 8px;
}

main {
    padding-top: 68px;
}

.hero-section {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    display: grid;
    align-items: stretch;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.hero-bg-glow {
    position: absolute;
    inset: auto -12% -30% -12%;
    height: 420px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent 70%);
    filter: blur(18px);
    pointer-events: none;
}

.hero-track {
    position: relative;
    min-height: 760px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.6fr);
    align-items: center;
    gap: 48px;
    padding: 96px max(24px, calc((100vw - 1440px) / 2 + 24px)) 78px;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 48%, rgba(2, 6, 23, 0.56) 100%),
        var(--hero-image) center / cover no-repeat;
    filter: saturate(1.05);
    opacity: 0.64;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 54%, #020617 100%);
}

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

.hero-copy,
.hero-poster {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.section-heading span,
.page-hero span,
.detail-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(37, 99, 235, 0.12));
    border: 1px solid rgba(34, 211, 238, 0.22);
}

.hero-copy h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(42px, 6.4vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    background: linear-gradient(135deg, #ecfeff, #67e8f9 42%, #38bdf8 76%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy h2 {
    margin: 22px 0 12px;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.1;
}

.hero-copy p {
    max-width: 760px;
    margin: 0;
    color: #cbd5e1;
    font-size: clamp(16px, 1.35vw, 21px);
}

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

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

.hero-tags span,
.tag-row span,
.detail-meta span {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    padding: 6px 10px;
    color: #cbd5e1;
    font-size: 13px;
    background: rgba(15, 23, 42, 0.62);
}

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

.primary-button,
.ghost-button,
.filter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.primary-button {
    color: #06222c;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 12px 32px rgba(34, 211, 238, 0.28);
}

.ghost-button,
.filter-link {
    color: #dbeafe;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: rgba(15, 23, 42, 0.72);
}

.primary-button:hover,
.ghost-button:hover,
.filter-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(34, 211, 238, 0.2);
    border-color: rgba(103, 232, 249, 0.45);
}

.hero-poster {
    align-self: center;
    justify-self: end;
    width: min(430px, 100%);
    border-radius: 34px;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid rgba(103, 232, 249, 0.26);
    box-shadow: var(--shadow);
    transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
}

.hero-poster img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #06222c;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

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

.hero-dot {
    width: 36px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.36);
}

.hero-dot.is-active {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.search-strip,
.category-strip,
.content-section,
.rank-section,
.content-layout,
.detail-content,
.breadcrumb,
.detail-hero,
.player-section {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.search-strip {
    padding-top: 48px;
    padding-bottom: 24px;
}

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

.section-heading.centered {
    text-align: center;
}

.section-heading.centered span {
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.page-hero h1,
.detail-info h1,
.story-panel h2,
.detail-side-panel h2,
.side-panel h2 {
    margin: 0;
    color: #ffffff;
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.section-heading h2 {
    font-size: clamp(28px, 3vw, 42px);
}

.section-heading p,
.page-hero p,
.category-card p,
.movie-card p,
.footer-inner p,
.detail-one-line,
.story-panel p,
.detail-side-panel dd {
    color: var(--muted);
}

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

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

.filter-bar,
.search-page-form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px auto;
    gap: 12px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.76);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.filter-bar input,
.filter-bar select,
.search-page-form input {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    color: var(--text);
    background: rgba(2, 6, 23, 0.64);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.filter-bar select option {
    background: #0f172a;
}

.category-strip {
    padding-top: 28px;
    padding-bottom: 26px;
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-chips a {
    padding: 12px 16px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.76);
    border: 1px solid rgba(148, 163, 184, 0.18);
    transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.category-chips a:hover {
    transform: translateY(-2px);
    color: var(--cyan);
    border-color: rgba(34, 211, 238, 0.42);
}

.content-section,
.rank-section {
    padding-top: 44px;
    padding-bottom: 44px;
}

.soft-panel {
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.76), rgba(30, 41, 59, 0.5));
    border: 1px solid rgba(148, 163, 184, 0.14);
}

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

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

.rank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.72), rgba(15, 23, 42, 0.88));
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.42);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.9);
}

.movie-poster img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.movie-card:hover .movie-poster img {
    transform: scale(1.06);
    filter: saturate(1.12) contrast(1.04);
}

.movie-poster::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 52%;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.86));
}

.poster-play {
    position: absolute;
    z-index: 2;
    left: 14px;
    bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #06222c;
    font-size: 13px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.rank-badge {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 12px;
    min-width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: #06121f;
    background: linear-gradient(135deg, #fef08a, #22d3ee);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

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

.movie-card h3 {
    margin: 8px 0 8px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.25;
}

.movie-card h3 a:hover {
    color: var(--cyan);
}

.movie-card p {
    min-height: 52px;
    margin: 0 0 12px;
    font-size: 14px;
}

.movie-meta-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-2);
    font-size: 13px;
}

.movie-meta-line a {
    color: var(--cyan);
}

.tag-row span {
    font-size: 12px;
    padding: 4px 8px;
}

.movie-card-compact {
    display: grid;
    grid-template-columns: 112px 1fr;
}

.movie-card-compact .movie-poster img {
    height: 100%;
    min-height: 170px;
}

.movie-card-compact .movie-card-body {
    align-self: center;
}

.movie-card-compact p {
    min-height: auto;
}

.page-main {
    padding-top: 104px;
}

.page-hero {
    max-width: 1440px;
    margin: 0 auto 18px;
    padding: 70px 24px 48px;
}

.small-hero,
.category-hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 36px 36px;
}

.small-hero::before,
.category-hero::before {
    content: "";
    position: absolute;
    inset: 0 24px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 18% 8%, rgba(34, 211, 238, 0.18), transparent 36rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.4));
    border: 1px solid rgba(148, 163, 184, 0.14);
    z-index: -1;
}

.page-hero h1 {
    max-width: 920px;
    font-size: clamp(34px, 5vw, 68px);
}

.page-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    font-size: 18px;
}

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

.category-card,
.side-panel,
.story-panel,
.detail-side-panel {
    border-radius: 28px;
    padding: 22px;
    background: var(--panel);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.category-title span {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.category-title strong {
    color: var(--cyan);
    font-size: 14px;
}

.mini-list {
    display: grid;
    gap: 10px;
}

.hot-link {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.42);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.hot-link:hover strong {
    color: var(--cyan);
}

.hot-link img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 12px;
}

.hot-link strong,
.hot-link em {
    display: block;
}

.hot-link strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.25;
}

.hot-link em {
    color: var(--muted-2);
    font-size: 12px;
    font-style: normal;
    margin-top: 4px;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    padding-top: 38px;
    padding-bottom: 54px;
}

.content-main,
.content-side {
    min-width: 0;
}

.content-side {
    position: sticky;
    top: 92px;
    align-self: start;
}

.page-filter {
    margin-bottom: 24px;
}

.search-page-form {
    grid-template-columns: minmax(220px, 1fr) auto;
    margin-bottom: 26px;
}

.empty-state {
    margin: 28px 0 0;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    color: var(--muted);
    text-align: center;
    background: rgba(15, 23, 42, 0.72);
}

.breadcrumb {
    padding-top: 22px;
    padding-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

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

.detail-hero {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 46px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(103, 232, 249, 0.24);
    box-shadow: var(--shadow);
    background: rgba(15, 23, 42, 0.86);
}

.detail-poster img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

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

.detail-one-line {
    max-width: 820px;
    margin: 18px 0 18px;
    font-size: 18px;
}

.detail-tags {
    margin: 18px 0 26px;
}

.player-section {
    padding-top: 12px;
    padding-bottom: 44px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000000;
    border: 1px solid rgba(34, 211, 238, 0.22);
    box-shadow: var(--shadow);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.58));
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: auto;
}

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

.play-button {
    width: clamp(76px, 10vw, 112px);
    height: clamp(76px, 10vw, 112px);
    border: 0;
    border-radius: 999px;
    color: #05212a;
    font-size: clamp(28px, 4vw, 46px);
    padding-left: 8px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.36);
    transition: transform 0.25s ease;
}

.play-button:hover {
    transform: scale(1.06);
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    padding-bottom: 40px;
}

.story-panel h2 + p {
    margin-top: 12px;
}

.story-panel p {
    font-size: 17px;
}

.detail-side-panel dl {
    margin: 0;
    display: grid;
    gap: 12px;
}

.detail-side-panel dt {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
}

.detail-side-panel dd {
    margin: -6px 0 4px;
}

.related-section {
    padding-top: 18px;
}

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

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 36px 24px;
    display: grid;
    grid-template-columns: minmax(240px, 0.75fr) 1fr;
    gap: 28px;
}

.footer-inner p {
    max-width: 520px;
    margin: 10px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: start;
    gap: 10px 16px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
}

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

[hidden] {
    display: none !important;
}

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

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

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

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

    .content-side {
        position: static;
    }
}

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

    .hero-section,
    .hero-track {
        min-height: 820px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        padding: 88px 18px 82px;
    }

    .hero-poster {
        justify-self: start;
        width: min(260px, 76vw);
        transform: none;
    }

    .filter-bar {
        grid-template-columns: 1fr;
    }

    .section-heading.with-link,
    .footer-inner,
    .detail-hero {
        grid-template-columns: 1fr;
        display: grid;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .brand span:last-child {
        font-size: 15px;
    }

    .hero-copy h1 {
        font-size: 39px;
    }

    .hero-copy h2 {
        font-size: 28px;
    }

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

    .movie-card-compact {
        grid-template-columns: 96px 1fr;
    }

    .search-strip,
    .category-strip,
    .content-section,
    .rank-section,
    .content-layout,
    .detail-content,
    .breadcrumb,
    .detail-hero,
    .player-section,
    .page-hero {
        padding-left: 16px;
        padding-right: 16px;
    }
}
