
:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-850: #111827;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --purple-300: #d8b4fe;
    --purple-500: #a855f7;
    --purple-700: #7e22ce;
    --purple-800: #6b21a8;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --ring: rgba(251, 191, 36, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
    color: var(--slate-300);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(88, 28, 135, 0.96), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid rgba(107, 33, 168, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--slate-950);
    background: linear-gradient(135deg, var(--amber-300), var(--amber-500));
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.32);
    font-size: 16px;
    font-weight: 900;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-size: 24px;
    line-height: 1;
    color: transparent;
    background: linear-gradient(90deg, #fde68a, var(--amber-400));
    -webkit-background-clip: text;
    background-clip: text;
}

.brand-copy small {
    color: var(--slate-400);
    font-size: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--slate-300);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--amber-400);
    transform: translateY(-1px);
}

.mobile-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--amber-400);
}

.mobile-menu {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.78);
    color: var(--slate-300);
    border: 1px solid rgba(107, 33, 168, 0.28);
}

.mobile-link.is-active,
.mobile-link:hover {
    color: var(--amber-400);
    border-color: rgba(251, 191, 36, 0.35);
}

.hero-carousel {
    position: relative;
    min-height: 70vh;
    height: 700px;
    overflow: hidden;
    background: var(--slate-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease;
}

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

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--slate-900) 0%, rgba(15, 23, 42, 0.68) 46%, rgba(15, 23, 42, 0.08) 100%), radial-gradient(circle at 22% 72%, rgba(107, 33, 168, 0.48), transparent 38%);
}

.hero-content {
    position: absolute;
    left: max(32px, calc((100vw - 1180px) / 2));
    bottom: 90px;
    width: min(760px, calc(100% - 64px));
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--amber-400);
    font-size: 14px;
    letter-spacing: 0.04em;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.04;
    margin: 0 0 18px;
    letter-spacing: -0.04em;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.hero-content p {
    color: var(--slate-300);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    margin: 0 0 22px;
    max-width: 680px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-tags span,
.tag-row span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 9px;
    background: rgba(251, 191, 36, 0.13);
    color: var(--amber-300);
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span:nth-child(even),
.tag-row span:nth-child(even),
.detail-meta span:nth-child(even) {
    background: rgba(126, 34, 206, 0.25);
    color: var(--purple-300);
}

.hero-actions,
.detail-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

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

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--amber-600));
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.32);
}

.btn-primary:hover {
    box-shadow: 0 18px 34px rgba(245, 158, 11, 0.46);
}

.btn-ghost {
    color: var(--amber-300);
    border: 1px solid rgba(251, 191, 36, 0.28);
    background: rgba(15, 23, 42, 0.52);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.48);
    cursor: pointer;
    font-size: 40px;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

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

.hero-prev {
    left: 22px;
    transform: translateY(-50%);
}

.hero-next {
    right: 22px;
    transform: translateY(-50%);
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--amber-400);
}

.quick-search {
    margin-top: -42px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(107, 33, 168, 0.38);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.92));
    box-shadow: var(--shadow);
}

.quick-search h2,
.section-heading h2,
.filter-panel h2,
.article-content h2 {
    color: #fef3c7;
    margin: 0;
}

.quick-search p,
.filter-panel p {
    color: var(--slate-400);
    margin: 8px 0 0;
    line-height: 1.7;
}

.home-search,
.filter-controls {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.home-search input,
.filter-controls input,
.filter-controls select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(107, 33, 168, 0.38);
    border-radius: 12px;
    color: var(--slate-200);
    background: rgba(2, 6, 23, 0.5);
    padding: 0 14px;
    outline: none;
}

.home-search input:focus,
.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--ring);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.12);
}

.home-search button {
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--amber-600));
    padding: 0 22px;
    font-weight: 800;
    cursor: pointer;
}

.page-stack {
    padding-top: 64px;
    display: grid;
    gap: 72px;
}

.section-block {
    display: grid;
    gap: 24px;
}

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

.section-heading h2 {
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.15;
}

.section-heading a {
    color: var(--amber-400);
    font-weight: 800;
}

.movie-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 310px);
    gap: 18px;
    overflow-x: auto;
    padding: 0 0 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--purple-800) var(--slate-900);
}

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

.movie-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(107, 33, 168, 0.26);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.58), rgba(15, 23, 42, 0.72));
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.45);
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.72), rgba(30, 41, 59, 0.84));
    box-shadow: 0 20px 42px rgba(251, 191, 36, 0.08);
}

.card-poster {
    position: relative;
    aspect-ratio: 2 / 2.85;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.9);
}

.card-poster-wide {
    width: 210px;
    aspect-ratio: 16 / 10;
    min-height: 132px;
}

.card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

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

.card-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 45%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.region-badge,
.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 10px;
    background: rgba(126, 34, 206, 0.82);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.rank-badge {
    left: auto;
    right: 12px;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
}

.play-hover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 44px;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.24s ease, transform 0.24s ease;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.56);
}

.movie-card:hover .play-hover {
    opacity: 1;
    transform: scale(1);
}

.card-body {
    padding: 16px;
    display: grid;
    gap: 10px;
}

.card-body h3 {
    color: #fef3c7;
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: color 0.2s ease;
}

.movie-card:hover .card-body h3 {
    color: var(--amber-400);
}

.card-body p {
    color: var(--slate-400);
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--slate-500);
    font-size: 13px;
}

.card-meta span + span::before {
    content: "·";
    margin-right: 8px;
    color: rgba(148, 163, 184, 0.55);
}

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

.tag-row span {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 12px;
}

.movie-card-horizontal {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
}

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

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

.category-tile,
.category-card {
    position: relative;
    min-height: 170px;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border: 1px solid rgba(107, 33, 168, 0.34);
    background: rgba(30, 41, 59, 0.58);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.category-tile:hover,
.category-card:hover {
    border-color: rgba(251, 191, 36, 0.42);
    transform: translateY(-3px);
}

.category-cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.42;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.category-tile:hover .category-cover {
    opacity: 0.58;
    transform: scale(1.06);
}

.category-tile::after,
.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.25));
}

.category-tile strong,
.category-tile em {
    position: relative;
    z-index: 2;
}

.category-tile strong,
.category-card h2 {
    color: #fef3c7;
    font-size: 20px;
    font-style: normal;
    margin: 0 0 8px;
}

.category-tile em,
.category-card p {
    color: var(--slate-400);
    font-style: normal;
    font-size: 13px;
    line-height: 1.6;
}

.category-card-grid {
    padding: 64px 0;
    grid-template-columns: repeat(2, 1fr);
}

.category-card {
    min-height: 240px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    justify-content: initial;
}

.category-card > div {
    position: relative;
    z-index: 2;
}

.category-posters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.category-posters span {
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    min-height: 170px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.category-card strong {
    color: var(--amber-400);
}

.page-hero {
    padding: 84px 0 40px;
    background: radial-gradient(circle at 18% 28%, rgba(126, 34, 206, 0.34), transparent 32%), linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.88));
    border-bottom: 1px solid rgba(107, 33, 168, 0.24);
}

.page-hero.compact h1 {
    color: var(--white);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
}

.page-hero.compact p {
    max-width: 780px;
    color: var(--slate-400);
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

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

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

.filter-panel {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(107, 33, 168, 0.32);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.62), rgba(15, 23, 42, 0.72));
}

.filter-controls {
    grid-template-columns: 1.4fr repeat(3, 1fr);
}

.empty-state {
    color: var(--slate-400);
    background: rgba(30, 41, 59, 0.58);
    border: 1px solid rgba(107, 33, 168, 0.28);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
}

.detail-hero {
    padding: 58px 0 50px;
    background: radial-gradient(circle at 14% 24%, rgba(251, 191, 36, 0.14), transparent 28%), radial-gradient(circle at 88% 12%, rgba(126, 34, 206, 0.28), transparent 36%), linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

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

.detail-cover {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.18);
    box-shadow: var(--shadow);
    background: rgba(15, 23, 42, 0.8);
}

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

.detail-copy h1 {
    color: var(--white);
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0 0 18px;
}

.detail-one-line {
    color: var(--slate-300);
    max-width: 820px;
    font-size: 18px;
    line-height: 1.85;
    margin: 0 0 22px;
}

.detail-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.detail-tags {
    margin-bottom: 24px;
}

.detail-stack {
    padding-bottom: 72px;
}

.movie-player {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(107, 33, 168, 0.34);
    background: #000000;
    box-shadow: var(--shadow);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55));
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.player-btn {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    color: var(--slate-950);
    background: linear-gradient(135deg, var(--amber-300), var(--amber-500));
    box-shadow: 0 24px 60px rgba(245, 158, 11, 0.38);
    font-size: 36px;
    font-weight: 900;
}

.article-content {
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(107, 33, 168, 0.28);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.62), rgba(15, 23, 42, 0.72));
}

.article-content h2 {
    font-size: 26px;
    margin-top: 0;
}

.article-content p {
    color: var(--slate-300);
    line-height: 2;
    font-size: 16px;
    margin: 0 0 22px;
}

.site-footer {
    margin-top: 80px;
    border-top: 1px solid rgba(107, 33, 168, 0.32);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), var(--slate-950));
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
}

.footer-brand p,
.site-footer li {
    color: var(--slate-400);
    line-height: 1.8;
}

.site-footer h3 {
    color: var(--amber-400);
    margin: 0 0 14px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.site-footer a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 34px;
    border-top: 1px solid rgba(107, 33, 168, 0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--slate-500);
}

.back-to-top {
    border: 1px solid rgba(251, 191, 36, 0.22);
    border-radius: 12px;
    background: rgba(126, 34, 206, 0.18);
    color: var(--amber-400);
    min-height: 38px;
    padding: 0 14px;
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

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

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

    .filter-controls {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-carousel {
        height: 620px;
        min-height: 620px;
    }

    .hero-content {
        left: 20px;
        width: calc(100% - 40px);
        bottom: 78px;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
        font-size: 34px;
    }

    .quick-search,
    .filter-panel,
    .detail-layout,
    .footer-grid,
    .category-card {
        grid-template-columns: 1fr;
    }

    .home-search,
    .filter-controls {
        grid-template-columns: 1fr;
    }

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

    .movie-card-horizontal {
        grid-template-columns: 1fr;
    }

    .card-poster-wide {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

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

@media (max-width: 560px) {
    .site-header-inner {
        min-height: 68px;
    }

    .brand-copy strong {
        font-size: 19px;
    }

    .brand-copy small {
        display: none;
    }

    .hero-carousel {
        height: 560px;
        min-height: 560px;
    }

    .hero-tags span:nth-child(n + 4) {
        display: none;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-arrow {
        display: none;
    }

    .quick-search {
        margin-top: -24px;
    }

    .page-stack {
        padding-top: 42px;
        gap: 52px;
    }

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

    .movie-scroller {
        grid-auto-columns: minmax(245px, 80vw);
    }

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

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

    .player-btn {
        width: 66px;
        height: 66px;
        font-size: 28px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
