:root {
    --mist-50: #f8f9fa;
    --mist-100: #f1f3f5;
    --mist-200: #e9ecef;
    --mist-300: #dee2e6;
    --mist-600: #868e96;
    --mist-700: #495057;
    --mist-800: #343a40;
    --mist-900: #212529;
    --fog-50: #f0f9ff;
    --fog-100: #e0f2fe;
    --fog-400: #38bdf8;
    --fog-600: #0284c7;
    --fog-700: #0369a1;
    --cocoon-50: #f0fdf4;
    --cocoon-100: #dcfce7;
    --cocoon-600: #16a34a;
    --shadow-soft: 0 20px 55px rgba(33, 37, 41, 0.10);
    --shadow-card: 0 10px 30px rgba(33, 37, 41, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--mist-900);
    background: linear-gradient(180deg, var(--mist-50), #ffffff 42%, #ffffff);
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid var(--mist-200);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: min(1180px, calc(100% - 32px));
    height: 66px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.brand {
    font-size: 21px;
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--fog-600), var(--cocoon-600));
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.25);
    font-size: 13px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--mist-700);
    font-weight: 650;
}

.nav-links a,
.mobile-panel a,
.footer-links a {
    transition: color 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover,
.mobile-panel a:hover,
.footer-links a:hover,
.more-link:hover {
    color: var(--fog-600);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--mist-100);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--mist-800);
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 8px 0 20px;
    border-top: 1px solid var(--mist-200);
}

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

.hero {
    position: relative;
    min-height: 70vh;
    height: 690px;
    overflow: hidden;
    background: var(--mist-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1s ease, transform 4s ease;
}

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(2, 132, 199, 0.35), transparent 32%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38) 50%, rgba(0, 0, 0, 0.12)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent 55%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    left: 0;
    right: 0;
    padding-bottom: 116px;
}

.hero-copy {
    max-width: 760px;
    color: #ffffff;
    animation: slideUp 0.72s ease both;
}

.hero-badges,
.detail-badges,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span,
.detail-badges span,
.tag-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 680px;
    margin: 0 0 28px;
    color: var(--mist-200);
    font-size: clamp(17px, 2.2vw, 23px);
    line-height: 1.65;
}

.hero-actions,
.section-head,
.toolbar,
.filter-chips,
.score-line,
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn,
.hero-search button,
.filter-chips button {
    border: 0;
    cursor: pointer;
    border-radius: 13px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
}

.btn:hover,
.hero-search button:hover,
.filter-chips button:hover {
    transform: translateY(-2px);
}

.btn-primary,
.hero-search button {
    color: #ffffff;
    background: var(--fog-600);
    box-shadow: 0 18px 38px rgba(2, 132, 199, 0.30);
}

.btn-primary:hover,
.hero-search button:hover {
    background: var(--fog-700);
}

.btn-soft {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14px);
}

.hero-controls {
    position: absolute;
    right: max(32px, calc((100vw - 1180px) / 2));
    bottom: 48px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.50);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

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

.hero-search {
    position: absolute;
    left: 50%;
    bottom: 38px;
    width: min(560px, calc(100% - 160px));
    transform: translateX(-50%);
    display: flex;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
}

.hero-search input,
.filter-input {
    width: 100%;
    border: 1px solid var(--mist-200);
    outline: none;
    border-radius: 13px;
    background: #ffffff;
    color: var(--mist-900);
}

.hero-search input {
    border: 0;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.92);
}

.hero-search button {
    margin-left: 8px;
    padding: 0 20px;
}

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

.compact-shell {
    padding: 64px 0;
}

.narrow-shell {
    width: min(920px, calc(100% - 32px));
}

.band-section {
    background: linear-gradient(180deg, var(--mist-50), #ffffff);
    border-top: 1px solid var(--mist-100);
    border-bottom: 1px solid var(--mist-100);
}

.section-head {
    justify-content: space-between;
    margin-bottom: 30px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--fog-600);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-head h2,
.page-hero h1,
.detail-side-card h1,
.detail-main h2 {
    margin: 0;
    color: var(--mist-900);
}

.section-head h2 {
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -0.03em;
}

.more-link {
    color: var(--fog-600);
    font-weight: 800;
}

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

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

.six-cols {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.movie-card {
    position: relative;
    min-width: 0;
}

.movie-card-link {
    display: block;
    height: 100%;
}

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md);
    background: var(--mist-200);
    box-shadow: var(--shadow-card);
}

.poster-wrap img,
.wide-cover img,
.mini-card img,
.ranking-row img,
.detail-side-card img,
.category-overview-images img,
.category-poster-cloud img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.poster-shade,
.poster-play {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.poster-shade {
    background: rgba(0, 0, 0, 0.42);
}

.poster-play {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 34px;
    transform: scale(0.72);
}

.movie-card:hover img,
.wide-card:hover img,
.mini-card:hover img,
.ranking-row:hover img,
.category-overview-card:hover img,
.category-tile:hover img {
    transform: scale(1.08);
}

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

.movie-card-body {
    display: block;
    padding: 14px 2px 0;
}

.movie-card-body strong {
    display: -webkit-box;
    min-height: 1.4em;
    color: var(--mist-900);
    font-size: 16px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.movie-card:hover strong,
.wide-card:hover strong,
.mini-card:hover span,
.ranking-row:hover strong {
    color: var(--fog-600);
}

.movie-meta-line,
.movie-desc {
    display: block;
    color: var(--mist-600);
    font-size: 13px;
    line-height: 1.55;
}

.movie-meta-line {
    margin-top: 5px;
}

.movie-desc {
    display: -webkit-box;
    margin-top: 5px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-compact .movie-card-body strong {
    font-size: 14px;
}

.movie-card-compact .movie-desc {
    display: none;
}

.horizontal-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 220px;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scroll-snap-type: x mandatory;
}

.horizontal-row .movie-card {
    scroll-snap-align: start;
}

.wide-stack {
    display: grid;
    gap: 26px;
}

.wide-card a {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 1fr;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wide-card a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.wide-cover {
    display: block;
    min-height: 290px;
    overflow: hidden;
    background: var(--mist-200);
}

.wide-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

.wide-info strong {
    margin-bottom: 14px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.wide-info span:not(.eyebrow) {
    color: var(--mist-700);
    line-height: 1.8;
}

.wide-info em {
    display: -webkit-box;
    margin-top: 16px;
    color: var(--mist-600);
    font-style: normal;
    line-height: 1.75;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.category-tile,
.category-overview-card {
    display: block;
    padding: 22px;
    border: 1px solid var(--mist-200);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    border-color: var(--fog-100);
    box-shadow: var(--shadow-soft);
}

.category-poster-cloud,
.category-overview-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    height: 92px;
    overflow: hidden;
    margin-bottom: 18px;
    border-radius: 16px;
}

.category-poster-cloud img,
.category-overview-images img {
    min-height: 100%;
    background: var(--mist-200);
}

.category-tile strong,
.category-overview-body strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.category-tile span:last-child,
.category-overview-body em {
    display: block;
    color: var(--mist-600);
    font-size: 14px;
    font-style: normal;
    line-height: 1.7;
}

.category-overview-card {
    display: grid;
    gap: 18px;
}

.category-overview-images {
    height: 124px;
    margin: 0;
}

.category-overview-body small {
    display: inline-flex;
    margin-top: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--fog-700);
    background: var(--fog-50);
    font-weight: 800;
}

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

.rank-mark {
    position: absolute;
    z-index: 4;
    top: 10px;
    left: 10px;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, var(--fog-600));
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 70px 0 20px;
}

.page-hero > div {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: clamp(34px, 6vw, 72px);
    background:
        radial-gradient(circle at 85% 0%, rgba(22, 163, 74, 0.16), transparent 32%),
        linear-gradient(135deg, var(--fog-50), #ffffff 56%, var(--cocoon-50));
    border: 1px solid var(--mist-200);
    box-shadow: var(--shadow-card);
}

.slim-hero > div {
    max-width: 100%;
}

.page-hero h1 {
    max-width: 780px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--mist-700);
    font-size: 18px;
    line-height: 1.8;
}

.toolbar {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 28px;
}

.filter-input {
    min-height: 50px;
    padding: 13px 16px;
    box-shadow: 0 10px 24px rgba(33, 37, 41, 0.05);
}

.large-input {
    min-height: 58px;
    font-size: 18px;
}

.filter-chips {
    flex-wrap: wrap;
}

.filter-chips button {
    min-height: 38px;
    padding: 8px 13px;
    color: var(--mist-700);
    background: #ffffff;
    border: 1px solid var(--mist-200);
}

.filter-chips button.is-active {
    color: #ffffff;
    background: var(--fog-600);
    border-color: var(--fog-600);
}

.filter-status {
    min-height: 20px;
    margin: 0;
    color: var(--mist-600);
    font-size: 14px;
}

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

.ranking-row a {
    display: grid;
    grid-template-columns: 52px 86px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--mist-200);
    box-shadow: 0 8px 26px rgba(33, 37, 41, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ranking-row a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.ranking-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: var(--mist-900);
    font-weight: 900;
}

.ranking-row img {
    width: 86px;
    height: 58px;
    border-radius: 12px;
    background: var(--mist-200);
}

.ranking-info strong,
.ranking-info em,
.ranking-info small {
    display: block;
}

.ranking-info strong {
    font-size: 18px;
}

.ranking-info em {
    display: -webkit-box;
    color: var(--mist-700);
    font-style: normal;
    line-height: 1.55;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ranking-info small {
    margin-top: 4px;
    color: var(--mist-600);
}

.score-badge {
    min-width: 54px;
    padding: 8px 10px;
    border-radius: 12px;
    color: var(--fog-700);
    background: var(--fog-50);
    font-weight: 900;
    text-align: center;
}

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

.breadcrumb {
    flex-wrap: wrap;
    color: var(--mist-600);
    font-size: 14px;
    margin-bottom: 18px;
}

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

.player-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: stretch;
}

.player-area {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    background: #000000;
    box-shadow: var(--shadow-soft);
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
    z-index: 1;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 0;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    background: #000000;
}

.player-area.is-playing .player-cover {
    display: none;
}

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

.cover-bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(1.05);
}

.cover-mask {
    background:
        radial-gradient(circle at center, rgba(2, 132, 199, 0.20), transparent 28%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.32));
}

.big-play {
    position: relative;
    z-index: 3;
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(2, 132, 199, 0.86);
    box-shadow: 0 22px 60px rgba(2, 132, 199, 0.42);
    font-size: 34px;
    padding-left: 6px;
    transition: transform 0.22s ease, background 0.22s ease;
}

.player-cover:hover .big-play {
    transform: scale(1.08);
    background: var(--fog-700);
}

.detail-side-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--mist-200);
}

.detail-side-card img {
    aspect-ratio: 3 / 4;
    background: var(--mist-200);
}

.detail-side-card div {
    padding: 22px;
}

.detail-side-card h1 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.score-line {
    margin-top: 18px;
}

.score-line span {
    font-size: 30px;
    font-weight: 900;
    color: var(--fog-600);
}

.score-line em {
    color: var(--mist-600);
    font-style: normal;
}

.detail-shell {
    padding-top: 46px;
    padding-bottom: 26px;
}

.detail-main {
    max-width: 920px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid var(--mist-200);
    box-shadow: var(--shadow-card);
    padding: clamp(24px, 4vw, 42px);
}

.detail-badges span,
.tag-cloud span {
    color: var(--mist-700);
    background: var(--mist-100);
    backdrop-filter: none;
}

.detail-main h2 {
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 26px;
}

.detail-main p {
    color: var(--mist-700);
    font-size: 17px;
    line-height: 1.9;
}

.lead-text {
    padding: 18px 20px;
    border-left: 5px solid var(--fog-600);
    border-radius: 0 14px 14px 0;
    background: var(--fog-50);
    font-weight: 700;
}

.tag-cloud {
    margin-top: 26px;
}

.mini-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.mini-card img {
    width: 72px;
    height: 52px;
    border-radius: 10px;
    background: var(--mist-200);
}

.mini-card span {
    color: var(--mist-800);
    font-weight: 750;
    line-height: 1.4;
}

.site-footer {
    margin-top: 40px;
    background: var(--mist-900);
    color: var(--mist-300);
}

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

.footer-brand {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 18px;
}

.site-footer p {
    margin: 0;
    color: var(--mist-300);
    line-height: 1.8;
}

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

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

.is-hidden {
    display: none !important;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

    .player-layout {
        grid-template-columns: 1fr;
    }

    .detail-side-card {
        display: grid;
        grid-template-columns: 160px 1fr;
    }

    .detail-side-card img {
        height: 100%;
    }
}

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

    .nav-toggle {
        display: inline-flex;
    }

    .brand {
        font-size: 18px;
    }

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

    .hero-content {
        padding-bottom: 170px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 260px;
    }

    .hero-search {
        width: calc(100% - 32px);
        bottom: 66px;
        flex-direction: column;
    }

    .hero-search button {
        height: 44px;
        margin: 8px 0 0;
    }

    .hero-controls {
        left: 16px;
        right: auto;
        bottom: 26px;
    }

    .section-shell {
        padding: 52px 0;
    }

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

    .four-cols,
    .six-cols,
    .rank-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .wide-card a {
        grid-template-columns: 1fr;
    }

    .wide-cover {
        min-height: auto;
        aspect-ratio: 16 / 9;
    }

    .wide-info {
        padding: 24px;
    }

    .ranking-row a {
        grid-template-columns: 42px 70px 1fr;
    }

    .ranking-info em,
    .score-badge {
        display: none;
    }

    .ranking-row img {
        width: 70px;
        height: 50px;
    }

    .player-layout {
        gap: 16px;
    }

    .detail-side-card {
        grid-template-columns: 112px 1fr;
    }

    .detail-side-card h1 {
        font-size: 22px;
    }

    .big-play {
        width: 74px;
        height: 74px;
        font-size: 26px;
    }

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

@media (max-width: 480px) {
    .four-cols,
    .six-cols,
    .rank-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .movie-desc,
    .movie-meta-line {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .page-hero > div {
        padding: 28px;
    }
}
