:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: #0f172a;
    --panel-soft: #111827;
    --panel-deep: #020617;
    --text: #f8fafc;
    --muted: #94a3b8;
    --faint: #64748b;
    --line: rgba(148, 163, 184, 0.18);
    --cyan: #06b6d4;
    --cyan-strong: #0891b2;
    --cyan-soft: rgba(6, 182, 212, 0.18);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(8, 145, 178, 0.18), transparent 35vw),
        radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.16), transparent 32vw),
        var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

.header-inner {
    width: min(1280px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan), #2563eb);
    box-shadow: 0 0 26px rgba(6, 182, 212, 0.42);
    color: white;
    font-size: 15px;
}

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

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

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover {
    color: white;
    background: rgba(6, 182, 212, 0.16);
}

.top-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    width: min(360px, 32vw);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    overflow: hidden;
}

.top-search input,
.big-search input,
.grid-search input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    color: white;
    background: transparent;
}

.top-search input {
    padding: 10px 14px;
}

.top-search button,
.big-search button {
    border: 0;
    color: white;
    background: var(--cyan-strong);
    padding: 10px 16px;
    transition: 0.25s ease;
}

.top-search button:hover,
.big-search button:hover {
    background: var(--cyan);
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 12px;
    color: white;
    background: rgba(15, 23, 42, 0.8);
}

.mobile-nav {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto 14px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
    padding: 10px;
}

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

.hero {
    position: relative;
    height: min(80vh, 760px);
    min-height: 560px;
    overflow: hidden;
}

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

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.6) 48%, rgba(2, 6, 23, 0.1) 100%),
        linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.55) 42%, rgba(2, 6, 23, 0.3) 100%);
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    bottom: 88px;
    width: min(760px, calc(100% - 48px));
    display: grid;
    gap: 18px;
}

.hero-kicker,
.card-meta,
.detail-tags,
.tag-row,
.filter-chips,
.hero-tags,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-kicker span,
.card-meta span:first-child,
.detail-tags span,
.tag-row span,
.hero-tags span,
.filter-chip {
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: #cbd5e1;
    padding: 6px 12px;
    font-size: 13px;
}

.hero-kicker span:first-child,
.card-meta span:first-child {
    background: var(--cyan-soft);
    color: #67e8f9;
    border-color: rgba(103, 232, 249, 0.2);
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    max-width: 900px;
}

.hero-content p {
    margin: 0;
    max-width: 760px;
    color: #dbeafe;
    font-size: clamp(17px, 2vw, 22px);
}

.primary-btn,
.ghost-btn,
.section-link,
.category-panel-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s ease;
}

.primary-btn {
    padding: 13px 26px;
    color: white;
    background: linear-gradient(135deg, var(--cyan-strong), #2563eb);
    box-shadow: 0 18px 38px rgba(6, 182, 212, 0.22);
}

.primary-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 48px rgba(6, 182, 212, 0.36);
}

.ghost-btn {
    padding: 12px 24px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 42, 0.54);
}

.ghost-btn:hover {
    border-color: rgba(103, 232, 249, 0.45);
    background: rgba(6, 182, 212, 0.14);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: white;
    background: rgba(0, 0, 0, 0.42);
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    transition: 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.68);
    border-color: rgba(103, 232, 249, 0.4);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    bottom: 42px;
    display: flex;
    gap: 10px;
    z-index: 4;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #475569;
    transition: 0.25s ease;
}

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

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

.home-stack {
    display: grid;
    gap: 72px;
    padding: 70px 0;
}

.content-section,
.story-card,
.info-card,
.ranking-card,
.category-panel,
.category-card {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
}

.content-section {
    padding: clamp(22px, 3vw, 38px);
}

.raised-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.72));
}

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

.section-head.with-search {
    align-items: center;
}

.slim-head {
    margin-bottom: 20px;
}

.section-eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    color: #67e8f9;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-head h2,
.page-hero h1,
.detail-intro h1,
.story-card h2,
.info-card h2 {
    margin: 0;
    color: white;
    line-height: 1.15;
}

.section-head h2 {
    font-size: clamp(26px, 3vw, 40px);
}

.section-head p,
.page-hero p,
.category-card p,
.site-footer p,
.story-card p,
.detail-intro p {
    color: var(--muted);
}

.section-link,
.category-panel-head a {
    color: #67e8f9;
}

.section-link:hover,
.category-panel-head a:hover {
    color: white;
}

.movie-grid {
    display: grid;
    gap: 24px;
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: var(--radius-lg);
    background: #0f172a;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
    transition: 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(103, 232, 249, 0.34);
    box-shadow: 0 26px 62px rgba(0, 0, 0, 0.36);
}

.poster-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(8, 47, 73, 0.88), rgba(15, 23, 42, 0.92));
}

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.8), transparent 55%);
    opacity: 0.82;
}

.duration-pill,
.rank-badge,
.card-play {
    position: absolute;
    z-index: 2;
}

.duration-pill {
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: white;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.66);
}

.rank-badge {
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg, #f97316, #e11d48);
}

.card-play {
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: white;
    background: rgba(6, 182, 212, 0.88);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
    transition: 0.25s ease;
}

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

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

.card-meta {
    gap: 8px;
    margin-bottom: 10px;
    color: var(--faint);
    font-size: 12px;
}

.card-meta span:not(:first-child) {
    color: #94a3b8;
}

.movie-card h3 {
    margin: 0 0 10px;
    display: -webkit-box;
    min-height: 2.7em;
    overflow: hidden;
    color: white;
    font-size: 17px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: 0.25s ease;
}

.movie-card:hover h3 {
    color: #67e8f9;
}

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

.tag-row {
    margin-top: 14px;
    gap: 7px;
}

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

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 28px;
    align-items: start;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

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

.category-panel,
.category-card {
    padding: 22px;
}

.category-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.category-panel-head h3,
.category-card h2 {
    margin: 0;
    color: white;
}

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

.mini-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    border-radius: 16px;
    transition: 0.25s ease;
}

.mini-row:hover {
    background: rgba(6, 182, 212, 0.08);
}

.mini-poster {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
}

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

.mini-info h4 {
    margin: 0 0 4px;
    overflow: hidden;
    color: white;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.25s ease;
}

.mini-row:hover h4 {
    color: #67e8f9;
}

.mini-info p {
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-rank {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    font-weight: 800;
    background: rgba(6, 182, 212, 0.24);
}

.grid-search {
    width: min(380px, 100%);
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.grid-search input,
.big-search input {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.48);
    padding: 13px 14px;
}

.filter-chips {
    margin: 0 0 26px;
}

.filter-chip {
    border: 1px solid rgba(148, 163, 184, 0.18);
    transition: 0.25s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    color: white;
    background: var(--cyan-strong);
    border-color: var(--cyan);
}

.no-results {
    margin: 30px 0 0;
    padding: 18px;
    border-radius: 18px;
    color: var(--muted);
    background: rgba(15, 23, 42, 0.82);
    text-align: center;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(8, 47, 73, 0.82), rgba(2, 6, 23, 0.92)),
        var(--bg);
}

.page-hero {
    padding: 96px 0 72px;
}

.page-hero > div {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.page-hero h1 {
    max-width: 860px;
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -0.04em;
}

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

.compact-actions {
    margin-top: 26px;
}

.category-grid-section {
    padding: 54px 0 70px;
}

.category-card {
    position: relative;
    overflow: hidden;
    transition: 0.25s ease;
}

.category-card::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.12);
    filter: blur(4px);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(103, 232, 249, 0.32);
}

.category-main-link {
    position: relative;
    display: grid;
    gap: 10px;
}

.category-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #67e8f9;
    background: var(--cyan-soft);
}

.category-samples {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.category-samples a {
    padding: 6px 10px;
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(2, 6, 23, 0.38);
    font-size: 13px;
}

.detail-hero {
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    padding: 80px 0 60px;
}

.detail-bg,
.detail-bg-mask {
    position: absolute;
    inset: 0;
}

.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
}

.detail-bg-mask {
    background:
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.72) 58%, rgba(2, 6, 23, 0.35) 100%),
        linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.62) 52%, transparent 100%);
}

.detail-shell {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    color: #cbd5e1;
    font-size: 14px;
}

.breadcrumb a {
    color: #67e8f9;
}

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

.detail-poster {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #0f172a;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-intro {
    display: grid;
    gap: 18px;
    max-width: 820px;
}

.detail-intro h1 {
    font-size: clamp(36px, 5.6vw, 72px);
    letter-spacing: -0.05em;
}

.detail-intro p {
    margin: 0;
    font-size: 19px;
}

.detail-content {
    display: grid;
    gap: 34px;
    padding: 54px 0 74px;
}

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

.player-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 30px;
    background: black;
    box-shadow: var(--shadow);
}

.player-frame video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: black;
}

.player-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: white;
    background: rgba(2, 6, 23, 0.3);
    transition: 0.25s ease;
}

.player-layer span {
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.9);
    box-shadow: 0 20px 54px rgba(6, 182, 212, 0.3);
    font-size: 38px;
    padding-left: 6px;
}

.player-layer:hover {
    background: rgba(2, 6, 23, 0.08);
}

.player-layer.is-hidden {
    display: none;
}

.player-error {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 4;
    margin: 0;
    padding: 10px 14px;
    border-radius: 999px;
    color: white;
    background: rgba(225, 29, 72, 0.9);
}

.detail-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.story-card,
.info-card {
    padding: clamp(22px, 3vw, 34px);
}

.story-card p {
    margin: 0 0 24px;
    font-size: 17px;
}

.story-card h2:not(:first-child) {
    margin: 26px 0 14px;
    font-size: 26px;
}

.info-card {
    position: sticky;
    top: 96px;
}

.info-card h2 {
    margin-bottom: 20px;
    font-size: 26px;
}

.info-item {
    display: grid;
    gap: 5px;
    padding: 15px 0;
    border-top: 1px solid var(--line);
}

.info-item span {
    color: var(--faint);
    font-size: 13px;
}

.info-item strong {
    color: white;
    font-weight: 700;
}

.big-search {
    display: flex;
    width: min(620px, 100%);
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.74);
}

.big-search input {
    border: 0;
    border-radius: 0;
    padding: 16px 18px;
}

.big-search button {
    padding: 0 24px;
}

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(2, 6, 23, 0.76);
    padding: 48px 0 26px;
}

.footer-grid {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
}

.site-footer p {
    max-width: 420px;
}

.site-footer h3 {
    margin: 0 0 16px;
    color: white;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: var(--muted);
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: #67e8f9;
}

.footer-bottom {
    width: min(1280px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: var(--faint);
    text-align: center;
}

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

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

    .info-card {
        position: static;
    }
}

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

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        min-height: 620px;
        height: 78vh;
    }

    .hero-content {
        bottom: 74px;
    }

    .hero-arrow {
        display: none;
    }

    .section-head,
    .section-head.with-search {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

    .detail-poster {
        width: min(320px, 80vw);
    }

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

@media (max-width: 560px) {
    .header-inner,
    .page-shell,
    .page-hero > div,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 22px, 1280px);
    }

    .site-logo span:last-child {
        font-size: 15px;
    }

    .hero-content {
        left: 16px;
        width: calc(100% - 32px);
    }

    .hero-kicker,
    .hero-tags {
        gap: 7px;
    }

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

    .hero-dots {
        right: 16px;
    }

    .featured-grid,
    .compact-grid,
    .all-grid,
    .category-panel-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

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

    .mini-row {
        grid-template-columns: 82px minmax(0, 1fr) auto;
    }

    .page-hero {
        padding: 72px 0 52px;
    }

    .detail-hero {
        padding-top: 56px;
    }

    .player-layer span {
        width: 74px;
        height: 74px;
        font-size: 30px;
    }

    .big-search {
        flex-direction: column;
    }

    .big-search button {
        padding: 14px 18px;
    }
}
