:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --orange-500: #f97316;
    --orange-700: #c2410c;
    --rose-700: #be123c;
    --rose-900: #881337;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.10);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--slate-800);
    background: linear-gradient(135deg, var(--slate-50), var(--amber-50));
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(120, 53, 15, 0.96), rgba(154, 52, 18, 0.96));
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.site-nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--amber-100);
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 211, 77, 0.18);
    color: var(--amber-300);
    box-shadow: 0 0 28px rgba(252, 211, 77, 0.35);
    font-size: 15px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--amber-50);
    font-weight: 700;
}

.nav-links a {
    position: relative;
    padding: 8px 0;
    opacity: 0.92;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: var(--amber-300);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--amber-200);
}

.menu-toggle {
    display: none;
    border: 0;
    background: rgba(255, 255, 255, 0.14);
    color: var(--amber-50);
    border-radius: 12px;
    padding: 8px 12px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at top left, rgba(252, 211, 77, 0.26), transparent 32%), linear-gradient(135deg, #78350f, #9a3412 46%, #881337);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.16;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.24;
}

.hero-glow-one {
    width: 260px;
    height: 260px;
    background: var(--amber-300);
    left: 6%;
    top: 12%;
}

.hero-glow-two {
    width: 360px;
    height: 360px;
    background: var(--rose-700);
    right: 4%;
    bottom: -80px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 82px 0 72px;
}

.hero-slider {
    min-height: 520px;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.74fr);
    gap: 42px;
    align-items: center;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-copy {
    max-width: 710px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(252, 211, 77, 0.18);
    color: var(--amber-200);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker {
    background: rgba(245, 158, 11, 0.12);
    color: var(--orange-700);
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.hero-copy h1 span {
    display: block;
    color: var(--amber-200);
}

.hero-copy h2 {
    margin: 18px 0 12px;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
}

.hero-copy p {
    max-width: 760px;
    color: var(--amber-100);
    font-size: 20px;
    line-height: 1.8;
}

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

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

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.btn-ghost {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-poster {
    position: relative;
    min-height: 430px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
    transform: rotate(1deg);
}

.hero-poster img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.62));
}

.hero-poster span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.95);
    font-weight: 900;
}

.hero-controls {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.hero-controls button {
    border: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    width: 40px;
    height: 40px;
    font-size: 26px;
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(255, 255, 255, 0.36);
}

.hero-dots button.is-active {
    width: 26px;
    background: var(--amber-300);
}

.hero-search {
    width: min(760px, 100%);
    margin: 24px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
}

.hero-search input {
    border: 0;
    outline: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    padding: 0 20px;
    min-height: 48px;
    color: var(--slate-800);
}

.hero-search button {
    border: 0;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--amber-500);
    color: var(--white);
    font-weight: 900;
}

.stats-strip {
    background: linear-gradient(90deg, var(--teal-600), var(--cyan-600));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 34px 0;
    text-align: center;
}

.stats-grid strong {
    display: block;
    font-size: 34px;
    line-height: 1;
}

.stats-grid span {
    color: #cffafe;
    font-weight: 700;
}

.section {
    padding: 72px 0;
}

.white-section {
    background: var(--white);
}

.warm-section {
    background: linear-gradient(135deg, var(--amber-50), #fff7ed);
}

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

.compact-head {
    align-items: center;
}

.section-head h2,
.side-panel h2,
.category-list-card h2,
.detail-content h2 {
    margin: 0 0 8px;
    color: var(--slate-800);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 950;
    letter-spacing: -0.04em;
}

.section-head p,
.side-panel p {
    margin: 0;
    color: var(--slate-600);
    font-size: 16px;
    line-height: 1.7;
}

.text-link {
    color: var(--orange-700);
    font-weight: 900;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.movie-card-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--slate-900);
}

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

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

.movie-year,
.rank-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--teal-500);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
}

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

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

.movie-meta-line {
    color: var(--teal-600);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 7px;
}

.movie-card h3 {
    margin: 0 0 10px;
    color: var(--slate-800);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card h3 a:hover,
.list-body h3 a:hover {
    color: var(--teal-600);
}

.movie-card p {
    margin: 0 0 16px;
    color: var(--slate-600);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 700;
}

.movie-card-footer a {
    color: var(--orange-700);
}

.movie-card-compact .movie-card-cover {
    aspect-ratio: 16 / 9;
}

.list-stack {
    display: grid;
    gap: 16px;
}

.list-movie {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    padding: 14px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.list-movie:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.list-cover {
    border-radius: 16px;
    overflow: hidden;
    background: var(--slate-900);
}

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

.list-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.list-rank {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    font-weight: 900;
}

.list-rank.soft {
    background: var(--teal-500);
}

.list-body h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 900;
}

.list-body p {
    margin: 10px 0 12px;
    color: var(--slate-600);
    line-height: 1.65;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
    align-items: start;
}

.side-panel,
.filter-card,
.category-list-card,
.detail-content {
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 28px;
}

.side-panel {
    position: sticky;
    top: 96px;
    background: linear-gradient(135deg, #fff7ed, var(--white));
}

.category-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

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

.category-tile {
    display: grid;
    gap: 8px;
    padding: 22px;
    border-radius: 20px;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal-600), var(--cyan-500));
    box-shadow: 0 14px 30px rgba(6, 182, 212, 0.22);
    transition: transform 0.25s ease;
}

.category-tile:nth-child(2n) {
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
}

.category-tile:hover {
    transform: translateY(-4px);
}

.category-tile span {
    font-size: 18px;
    font-weight: 900;
}

.category-tile strong {
    font-size: 38px;
    line-height: 1;
}

.category-tile em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.82);
}

.page-hero {
    color: var(--white);
    padding: 82px 0 64px;
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 950;
    letter-spacing: -0.06em;
}

.page-hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
    line-height: 1.75;
}

.teal-hero {
    background: linear-gradient(135deg, var(--teal-600), var(--cyan-600));
}

.rose-hero {
    background: linear-gradient(135deg, var(--rose-700), var(--orange-700));
}

.amber-hero {
    background: linear-gradient(135deg, #78350f, var(--orange-700));
}

.filter-panel {
    margin-top: -32px;
    position: relative;
    z-index: 2;
}

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

.filter-card h2 {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 950;
}

.filter-card p {
    margin: 0;
    color: var(--slate-600);
}

.filter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 12px;
}

.filter-row input,
.filter-row select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 2px solid var(--slate-200);
    border-radius: 14px;
    outline: 0;
    background: var(--white);
    color: var(--slate-800);
}

.filter-row input:focus,
.filter-row select:focus {
    border-color: var(--teal-500);
}

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

.filter-chips button {
    border: 0;
    border-radius: 999px;
    padding: 9px 16px;
    color: var(--slate-700);
    background: var(--slate-100);
    font-weight: 800;
}

.filter-chips button.active,
.filter-chips button:hover {
    color: var(--white);
    background: linear-gradient(90deg, var(--teal-500), var(--cyan-500));
}

.result-line {
    color: var(--slate-600);
}

.empty-state {
    display: none;
    margin-top: 20px;
    padding: 28px;
    text-align: center;
    border-radius: 18px;
    color: var(--slate-600);
    background: var(--slate-100);
    font-weight: 800;
}

.empty-state.is-visible {
    display: block;
}

.category-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

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

.category-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--slate-50);
    color: var(--slate-700);
    font-weight: 800;
}

.category-link-list a:hover {
    color: var(--teal-600);
    background: #ecfeff;
}

.category-link-list strong {
    color: var(--orange-700);
}

.detail-hero {
    color: var(--white);
    background: radial-gradient(circle at 82% 10%, rgba(20, 184, 166, 0.25), transparent 32%), linear-gradient(135deg, #431407, #7c2d12 44%, #0f172a);
    padding: 72px 0;
}

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

.detail-poster {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
    aspect-ratio: 3 / 4;
    background: var(--slate-900);
}

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

.back-link {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--amber-200);
    font-weight: 900;
}

.detail-copy h1 {
    margin: 8px 0 16px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.detail-one-line {
    margin: 0;
    max-width: 820px;
    color: var(--amber-100);
    font-size: 20px;
    line-height: 1.8;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pill {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--amber-100);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 800;
}

.player-section {
    background: var(--slate-950, #020617);
}

.video-player {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000000;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    aspect-ratio: 16 / 9;
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.46));
    color: var(--white);
}

.play-overlay span {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.42);
    font-size: 30px;
    padding-left: 5px;
}

.video-player.is-playing .play-overlay,
.play-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.detail-content {
    margin-top: 28px;
}

.detail-content p {
    margin: 0 0 22px;
    color: var(--slate-700);
    font-size: 17px;
    line-height: 1.9;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.info-grid div {
    padding: 16px;
    border-radius: 16px;
    background: var(--slate-50);
}

.info-grid dt {
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 900;
}

.info-grid dd {
    margin: 5px 0 0;
    color: var(--slate-800);
    font-weight: 900;
}

.prev-next {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.prev-next a {
    padding: 14px 16px;
    border-radius: 16px;
    color: var(--teal-600);
    background: #ecfeff;
    font-weight: 900;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(135deg, var(--slate-900), #111827);
    padding: 58px 0 34px;
}

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

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

.site-footer p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.8;
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
}

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

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 18px;
        background: rgba(120, 53, 15, 0.98);
        box-shadow: var(--shadow);
    }

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

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

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.10);
    }

    .hero-slide,
    .detail-layout,
    .split-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-slide {
        position: relative;
        display: none;
    }

    .hero-slide.is-active {
        display: grid;
    }

    .hero-slider {
        min-height: auto;
    }

    .hero-poster,
    .hero-poster img {
        min-height: 320px;
    }

    .side-panel {
        position: static;
    }

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

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

@media (max-width: 640px) {
    .container,
    .narrow-container {
        width: min(100% - 22px, 1180px);
    }

    .hero-inner {
        padding: 52px 0;
    }

    .hero-search,
    .filter-row,
    .stats-grid,
    .three-grid,
    .four-grid,
    .major-grid,
    .category-columns,
    .category-tile-grid,
    .info-grid,
    .prev-next {
        grid-template-columns: 1fr;
    }

    .hero-search {
        border-radius: 24px;
    }

    .hero-search input,
    .hero-search button {
        width: 100%;
    }

    .section {
        padding: 52px 0;
    }

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

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

    .list-cover {
        aspect-ratio: 16 / 9;
    }

    .detail-poster {
        max-width: 300px;
        margin: 0 auto;
    }

    .play-overlay span {
        width: 66px;
        height: 66px;
        font-size: 24px;
    }
}
