:root {
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.82);
    --panel-strong: #0f172a;
    --panel-soft: rgba(30, 41, 59, 0.72);
    --line: rgba(148, 163, 184, 0.18);
    --text: #e5edf8;
    --muted: #94a3b8;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --green: #34d399;
    --amber: #fbbf24;
    --danger: #fb7185;
    --shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 10%, rgba(34, 211, 238, 0.18), transparent 28rem),
        radial-gradient(circle at 86% 8%, rgba(59, 130, 246, 0.18), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #0f172a 44%, #020617 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(2, 6, 23, 0.88);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(2, 6, 23, 0.32);
    backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.28);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 650;
}

.nav-links a {
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-search {
    padding: 9px 14px;
    color: #001018 !important;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.22);
}

.nav-search::after {
    display: none;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #e2e8f0;
    border-radius: 99px;
}

main {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

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

.hero {
    min-height: 760px;
    padding-top: 96px;
}

.hero-slider {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.72));
    border: 1px solid var(--line);
    border-radius: 36px;
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 48px;
    align-items: center;
    padding: 72px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(22px) scale(0.985);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.hero-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px) saturate(1.1);
    opacity: 0.28;
    transform: scale(1.08);
}

.hero-backdrop::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.35)),
        radial-gradient(circle at 16% 18%, rgba(34, 211, 238, 0.24), transparent 26rem),
        radial-gradient(circle at 78% 24%, rgba(59, 130, 246, 0.24), transparent 24rem);
}

.hero-image-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: rgba(226, 232, 240, 0.2);
    font-size: clamp(40px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: 0.08em;
    background: radial-gradient(circle at 50% 35%, rgba(34, 211, 238, 0.2), transparent 28rem);
}

.hero-backdrop img.is-missing + .hero-image-fallback {
    display: flex;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    color: #a5f3fc;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
    margin: 18px 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero-summary,
.page-hero p,
.detail-one-line {
    max-width: 720px;
    color: #cbd5e1;
    font-size: 18px;
}

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

.hero-tags span,
.detail-tags a,
.tag-row span {
    padding: 6px 10px;
    color: #bae6fd;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-actions,
.detail-info .primary-button {
    margin-top: 30px;
}

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

.primary-button,
.home-search button,
.search-box-large button {
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border: 0;
    box-shadow: 0 18px 45px rgba(34, 211, 238, 0.28);
}

.ghost-button {
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid var(--line);
}

.primary-button:hover,
.ghost-button:hover,
.home-search button:hover,
.search-box-large button:hover {
    transform: translateY(-2px);
}

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

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: var(--panel-strong);
    border: 1px solid rgba(226, 232, 240, 0.12);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

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

.hero-controls {
    position: absolute;
    right: 72px;
    bottom: 44px;
    z-index: 6;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 32px;
    height: 8px;
    padding: 0;
    background: rgba(226, 232, 240, 0.24);
    border: 0;
    border-radius: 999px;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-search-band,
.page-hero,
.content-section,
.site-footer,
.detail-hero,
.player-section,
.detail-text-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.quick-search-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 28px;
    align-items: center;
    margin: 28px 0 0;
    padding: 28px;
}

.quick-search-band h2 {
    margin: 10px 0 0;
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1.1;
}

.home-search,
.search-box-large {
    display: flex;
    gap: 12px;
    padding: 8px;
    background: rgba(2, 6, 23, 0.62);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.home-search input,
.search-box-large input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: none;
}

.home-search input,
.search-box-large input {
    background: transparent;
    border-color: transparent;
}

.content-section {
    margin-top: 32px;
    padding: 30px;
}

.gradient-section {
    background:
        radial-gradient(circle at 15% 15%, rgba(34, 211, 238, 0.13), transparent 20rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.84));
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.section-heading p {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--muted);
}

.section-more {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--cyan);
    font-weight: 800;
    white-space: nowrap;
}

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

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

.movie-card {
    overflow: hidden;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 22px;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    border-color: rgba(34, 211, 238, 0.32);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
    transform: translateY(-6px);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.poster-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.poster-fallback,
.category-fallback,
.hero-poster-fallback {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    text-align: center;
    background:
        radial-gradient(circle at 30% 15%, rgba(34, 211, 238, 0.34), transparent 16rem),
        linear-gradient(145deg, #0f172a, #111827 55%, #082f49);
}

.poster-fallback span,
.category-fallback span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.poster-fallback strong {
    font-size: 18px;
    line-height: 1.24;
}

img.is-missing {
    display: none !important;
}

img.is-missing + .poster-fallback,
img.is-missing + .category-fallback,
img.is-missing + .hero-poster-fallback {
    display: flex;
}

.score-badge,
.rank-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 900;
    border-radius: 999px;
}

.score-badge {
    right: 12px;
    bottom: 12px;
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.rank-badge {
    top: 12px;
    left: 12px;
    color: #111827;
    background: linear-gradient(135deg, #fef08a, #f59e0b);
}

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

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
}

.movie-card h3 {
    margin: 8px 0 8px;
    font-size: 18px;
    line-height: 1.28;
}

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

.movie-card p {
    min-height: 46px;
    margin: 0;
    color: #aab7c8;
    font-size: 14px;
}

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

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

.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 190px;
    background: #0f172a;
    border: 1px solid var(--line);
    border-radius: 22px;
}

.large-category-grid .category-card {
    min-height: 260px;
}

.category-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.12));
}

.category-card-overlay span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
}

.category-card-overlay h3 {
    margin: 6px 0;
    font-size: 22px;
}

.category-card-overlay p {
    margin: 0;
    color: #cbd5e1;
    font-size: 13px;
}

.page-hero {
    padding: 48px;
}

.compact-hero {
    background:
        radial-gradient(circle at 10% 12%, rgba(34, 211, 238, 0.22), transparent 26rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.78));
}

.category-hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.22), transparent 24rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 47, 73, 0.74));
}

.summary-links {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.summary-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.summary-links strong {
    color: var(--cyan);
}

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

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

.filter-panel {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 14px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(2, 6, 23, 0.38);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.filter-empty {
    padding: 22px;
    color: var(--muted);
    text-align: center;
    background: rgba(2, 6, 23, 0.4);
    border: 1px dashed rgba(148, 163, 184, 0.3);
    border-radius: 18px;
}

.table-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

th,
td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

th {
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.9);
}

td {
    color: #cbd5e1;
}

td a {
    color: #f8fafc;
    font-weight: 800;
}

td a:hover {
    color: var(--cyan);
}

.detail-hero {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 36px;
    padding: 36px;
}

.detail-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: #0f172a;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

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

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

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

.detail-meta-grid div {
    padding: 14px;
    background: rgba(2, 6, 23, 0.42);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.detail-meta-grid dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.detail-meta-grid dd {
    margin: 6px 0 0;
    font-weight: 800;
}

.player-section {
    margin-top: 32px;
    padding: 20px;
}

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

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 40%, rgba(34, 211, 238, 0.24), transparent 18rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.34), rgba(2, 6, 23, 0.88));
    border: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-shell.is-playing .player-overlay {
    opacity: 0;
    visibility: hidden;
}

.play-icon {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.32);
}

.player-overlay strong {
    font-size: 24px;
}

.player-overlay small,
.player-message {
    color: #cbd5e1;
}

.player-message {
    position: absolute;
    right: 18px;
    bottom: 14px;
    left: 18px;
    margin: 0;
    font-size: 13px;
    text-align: center;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 32px;
}

.detail-text-card {
    padding: 28px;
}

.detail-text-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.detail-text-card p {
    margin: 0;
    color: #cbd5e1;
    font-size: 16px;
}

.search-box-large {
    max-width: 860px;
    margin-top: 26px;
}

.site-footer {
    width: min(1200px, calc(100% - 32px));
    margin: 42px auto 28px;
    padding: 30px;
}

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

.site-footer p,
.site-footer a {
    color: #cbd5e1;
}

.site-footer h2 {
    margin: 0 0 12px;
    font-size: 16px;
}

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

.footer-links a {
    padding: 7px 10px;
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--cyan);
    border-color: rgba(34, 211, 238, 0.4);
}

@media (max-width: 1080px) {
    .nav-links {
        gap: 14px;
        font-size: 13px;
    }

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

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

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

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

@media (max-width: 820px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px;
        background: rgba(2, 6, 23, 0.96);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }

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

    .nav-links a {
        padding: 10px 12px;
        border-radius: 12px;
    }

    .nav-links a:hover {
        background: rgba(30, 41, 59, 0.72);
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        min-height: 700px;
        padding-top: 88px;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }

    .hero-poster {
        width: min(240px, 72vw);
        justify-self: center;
    }

    .hero-controls {
        right: 28px;
        bottom: 24px;
    }

    .quick-search-band,
    .detail-hero,
    .detail-content-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-cover {
        width: min(320px, 86vw);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    main,
    .site-footer {
        width: min(100% - 20px, 1200px);
    }

    .navbar {
        width: min(100% - 20px, 1200px);
    }

    .brand {
        font-size: 18px;
    }

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

    .content-section,
    .page-hero,
    .quick-search-band,
    .detail-hero,
    .detail-text-card {
        padding: 20px;
        border-radius: 20px;
    }

    .movie-grid,
    .movie-grid-rank,
    .category-grid,
    .large-category-grid,
    .summary-links {
        grid-template-columns: 1fr;
    }

    .home-search,
    .search-box-large {
        flex-direction: column;
        border-radius: 24px;
    }

    .home-search button,
    .search-box-large button {
        width: 100%;
    }

    .player-shell {
        aspect-ratio: 4 / 3;
    }
}
