:root {
    color-scheme: light;
    --sky: #0284c7;
    --sky-dark: #0369a1;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --soft: #f8fafc;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f1f5f9 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.site-nav {
    max-width: 1180px;
    height: 68px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sky), var(--blue), var(--cyan));
    box-shadow: 0 12px 24px rgba(2, 132, 199, 0.28);
}

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

.nav-link,
.mobile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #334155;
    font-weight: 650;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover {
    color: var(--sky-dark);
    background: #e0f2fe;
    transform: translateY(-1px);
}

.menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 14px;
    color: var(--ink);
    background: #f1f5f9;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.mobile-panel {
    display: none;
    padding: 0 20px 16px;
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.mobile-panel.is-open {
    display: grid;
    gap: 8px;
}

.mobile-sub {
    color: var(--muted);
    justify-content: flex-start;
    padding-left: 28px;
}

.hero-slider {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: linear-gradient(120deg, #075985, #2563eb 48%, #06b6d4);
    color: #ffffff;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 680px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 26%),
        radial-gradient(circle at 72% 18%, rgba(14, 165, 233, 0.32), transparent 30%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.55));
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1180px;
    min-height: 680px;
    margin: 0 auto;
    padding: 112px 20px 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-content h1,
.hero-content h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -0.05em;
    font-weight: 900;
    text-wrap: balance;
}

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

.hero-content h1 + h2 {
    margin-top: 12px;
    font-size: clamp(26px, 4vw, 44px);
    color: #e0f2fe;
}

.eyebrow {
    margin: 0 0 14px;
    color: #bae6fd;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--sky-dark);
}

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

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

.hero-tags span,
.mini-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.mini-tags span {
    color: #0369a1;
    background: #e0f2fe;
}

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

.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 14px;
    font-weight: 850;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
    padding: 12px 22px;
    color: var(--sky-dark);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.ghost-btn {
    padding: 12px 22px;
    color: #ffffff;
    background: rgba(3, 105, 161, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(12px);
}

.ghost-btn.light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.text-link {
    color: var(--sky-dark);
    min-height: 40px;
}

.hero-poster {
    position: absolute;
    z-index: 4;
    right: max(20px, calc((100vw - 1180px) / 2 + 20px));
    top: 132px;
    width: min(320px, 24vw);
    aspect-ratio: 2 / 3;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.36);
    transform: rotate(2deg);
}

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

.hero-poster span {
    position: absolute;
    right: 16px;
    top: 16px;
    padding: 7px 10px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.76);
    font-weight: 900;
}

.hero-controls {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 106px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

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

.hero-dot.is-active {
    width: 34px;
    background: #ffffff;
}

.hero-strip {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 22px;
    width: min(1180px, calc(100vw - 40px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.hero-mini {
    min-width: 0;
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 10px;
    padding: 9px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.hero-mini img {
    width: 54px;
    height: 68px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-mini span {
    overflow: hidden;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.stats-row {
    position: relative;
    z-index: 8;
    max-width: 1180px;
    margin: -48px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.stats-row div {
    padding: 22px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.stats-row strong {
    display: block;
    font-size: 22px;
    color: var(--ink);
}

.stats-row span {
    color: var(--muted);
    font-weight: 700;
}

.section-block {
    max-width: 1180px;
    margin: 0 auto;
    padding: 78px 20px;
}

.soft-section {
    max-width: none;
    padding-left: max(20px, calc((100vw - 1180px) / 2 + 20px));
    padding-right: max(20px, calc((100vw - 1180px) / 2 + 20px));
    background: linear-gradient(135deg, #f8fafc, #e0f2fe 58%, #f8fafc);
}

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

.section-heading h2,
.page-hero h1,
.detail-info h1,
.article-card h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 900;
}

.section-heading p,
.page-hero p,
.article-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

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

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

.category-card {
    position: relative;
    min-height: 212px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: auto -36px -46px auto;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(37, 99, 235, 0.1));
}

.category-card:hover,
.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.16);
}

.category-icon {
    display: block;
    font-size: 42px;
    margin-bottom: 14px;
}

.category-card strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
}

.category-card p {
    margin: 10px 0 18px;
    color: var(--muted);
}

.category-card em {
    color: var(--sky-dark);
    font-style: normal;
    font-weight: 900;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card-link {
    display: grid;
    height: 100%;
    color: inherit;
}

.poster-box {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe, #f8fafc);
}

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

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

.poster-badge,
.poster-year,
.rank-badge {
    position: absolute;
    z-index: 2;
    padding: 6px 9px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(10px);
}

.poster-badge {
    left: 12px;
    top: 12px;
}

.poster-year {
    right: 12px;
    bottom: 12px;
}

.rank-badge {
    right: 12px;
    top: 12px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

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

.score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.score-row strong {
    color: #f97316;
    font-size: 16px;
}

.movie-card h2 {
    margin: 10px 0 8px;
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.25s ease;
}

.movie-card:hover h2 {
    color: var(--sky-dark);
}

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

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

.movie-card-compact .poster-box {
    aspect-ratio: auto;
    min-height: 160px;
}

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

.movie-card-compact h2 {
    font-size: 16px;
}

.rank-preview {
    padding-top: 60px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 62px 1fr 86px;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 12px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    border-color: #7dd3fc;
}

.rank-row span {
    color: var(--sky-dark);
    font-weight: 900;
}

.rank-row strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-row em {
    color: #f97316;
    font-style: normal;
    font-weight: 900;
    text-align: right;
}

.page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 26%),
        linear-gradient(120deg, #075985, #2563eb 54%, #06b6d4);
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -120px -180px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
}

.page-hero > div {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 84px 0;
}

.page-hero p {
    max-width: 760px;
    color: #dbeafe;
    font-size: 18px;
}

.filter-panel {
    margin-bottom: 26px;
    padding: 18px;
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.filter-search {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-search span {
    position: absolute;
    left: 16px;
    color: var(--muted);
    font-size: 24px;
}

.filter-search input {
    width: 100%;
    min-height: 52px;
    padding: 0 18px 0 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: 0;
    background: #f8fafc;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.filter-search input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.filter-chip {
    min-height: 36px;
    padding: 7px 14px;
    border: 0;
    border-radius: 999px;
    color: #0f172a;
    background: #e2e8f0;
    font-weight: 800;
    cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), var(--blue));
}

.filter-result {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.empty-state {
    margin-top: 24px;
    padding: 38px 20px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--muted);
    background: #ffffff;
    border: 1px solid var(--line);
}

.detail-hero {
    position: relative;
    color: #ffffff;
    background-size: cover;
    background-position: center;
}

.detail-hero-inner {
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 38px 0 80px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 34px;
    color: #bae6fd;
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb strong {
    color: #ffffff;
}

.detail-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 42px;
}

.detail-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

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

.detail-poster span {
    position: absolute;
    right: 14px;
    top: 14px;
    padding: 8px 11px;
    border-radius: 13px;
    background: rgba(2, 6, 23, 0.72);
    font-weight: 900;
}

.detail-info h1 {
    max-width: 880px;
    font-size: clamp(34px, 5vw, 62px);
    color: #ffffff;
}

.lead {
    max-width: 880px;
    margin: 18px 0 0;
    color: #dbeafe;
    font-size: clamp(17px, 2vw, 22px);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.detail-section {
    padding-top: 54px;
    padding-bottom: 54px;
}

.player-shell {
    padding: 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(125, 211, 252, 0.44);
    box-shadow: var(--shadow);
}

.player-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    background: #020617;
}

.movie-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle at 50% 42%, rgba(14, 165, 233, 0.32), rgba(2, 6, 23, 0.74) 62%);
    cursor: pointer;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.play-orb {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-left: 5px;
    font-size: 34px;
    color: var(--sky-dark);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.28);
}

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

.player-cover em {
    max-width: 80%;
    overflow: hidden;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #dbeafe;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.article-card {
    padding: 28px;
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.article-card p:last-child {
    color: #334155;
    font-size: 17px;
}

.site-footer {
    color: #cbd5e1;
    background: #0f172a;
}

.footer-inner {
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 54px 0 34px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    color: #ffffff;
}

.site-footer p {
    color: #94a3b8;
}

.site-footer h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 18px;
}

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

.site-footer a:hover {
    color: #7dd3fc;
}

.footer-bottom {
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 22px 0;
    color: #94a3b8;
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    text-align: center;
}

@media (max-width: 1024px) {
    .hero-poster {
        opacity: 0.44;
        right: 20px;
        width: 260px;
    }

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

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

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

    .menu-toggle {
        display: flex;
    }

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

    .hero-content {
        padding-top: 92px;
        padding-bottom: 180px;
    }

    .hero-poster {
        display: none;
    }

    .hero-strip {
        grid-template-columns: repeat(2, 1fr);
        overflow: auto;
    }

    .hero-mini:nth-child(n+3) {
        display: none;
    }

    .stats-row,
    .movie-grid,
    .category-grid,
    .compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading,
    .two-column,
    .footer-inner,
    .detail-layout {
        grid-template-columns: 1fr;
        display: grid;
    }

    .detail-poster {
        width: min(260px, 70vw);
    }
}

@media (max-width: 560px) {
    .site-nav {
        height: 62px;
        padding: 0 14px;
    }

    .brand {
        font-size: 18px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }

    .hero-slider,
    .hero-slide,
    .hero-content {
        min-height: 620px;
    }

    .hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-actions,
    .page-actions {
        width: 100%;
    }

    .primary-btn,
    .ghost-btn {
        flex: 1 1 auto;
    }

    .hero-controls {
        bottom: 126px;
    }

    .hero-strip {
        bottom: 18px;
        width: calc(100vw - 24px);
    }

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

    .stats-row {
        margin-top: -36px;
    }

    .section-block,
    .soft-section {
        padding: 52px 16px;
    }

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

    .rank-row {
        grid-template-columns: 46px 1fr 70px;
        font-size: 14px;
    }

    .page-hero > div,
    .detail-hero-inner,
    .footer-inner,
    .footer-bottom {
        width: calc(100vw - 32px);
    }

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

    .player-shell {
        padding: 10px;
        border-radius: 20px;
    }

    .player-frame {
        border-radius: 16px;
    }

    .play-orb {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
}
