:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-500: #f97316;
    --orange-700: #c2410c;
    --yellow-600: #ca8a04;
    --red-500: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-soft: 0 20px 55px rgba(146, 64, 14, 0.14);
    --shadow-card: 0 18px 40px rgba(17, 24, 39, 0.16);
    --radius-xl: 24px;
    --radius-lg: 18px;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--amber-50), #fff7ed 50%, #fefce8);
    color: var(--gray-800);
}

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.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.22);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(146, 64, 14, 0.12);
}

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

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

.brand-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 25px;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500), var(--orange-500));
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.36);
    transform: translateZ(0);
    transition: transform 0.3s ease;
}

.brand:hover .brand-icon {
    transform: scale(1.08) rotate(-3deg);
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 24px;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-500), var(--yellow-600));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.brand-text small {
    margin-top: 4px;
    color: var(--gray-500);
    font-size: 12px;
}

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

.nav-links a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--amber-600);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--amber-100);
    color: var(--amber-700);
    cursor: pointer;
}

.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.03);
    transition: opacity 0.8s ease, transform 1.2s ease;
}

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

.hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.12)), linear-gradient(0deg, rgba(17, 24, 39, 0.34), rgba(17, 24, 39, 0));
}

.hero-inner {
    position: relative;
    height: 100%;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 720px;
    color: #fff;
    display: grid;
    gap: 22px;
}

.hero-kicker {
    width: max-content;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 16px;
    background: var(--amber-500);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.32);
}

.hero-copy h1,
.detail-copy h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-copy p,
.detail-copy p,
.page-hero p {
    margin: 0;
    max-width: 760px;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.86);
}

.hero-meta,
.detail-meta,
.card-meta,
.rank-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 14px;
}

.hero-meta span,
.detail-meta span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

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

.primary-btn {
    background: var(--amber-500);
    color: #fff;
    box-shadow: 0 15px 34px rgba(245, 158, 11, 0.32);
}

.primary-btn:hover {
    background: var(--amber-600);
    transform: translateY(-2px) scale(1.03);
}

.ghost-btn {
    border: 1px solid rgba(255, 255, 255, 0.48);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 132px;
    z-index: 4;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-controls button {
    border: 0;
    cursor: pointer;
}

.hero-controls > button {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 32px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
}

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

.hero-thumbs {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 5;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.hero-thumb {
    min-height: 86px;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 18px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0.76;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.hero-thumb:hover,
.hero-thumb.is-active {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(245, 158, 11, 0.28);
}

.hero-thumb img {
    width: 62px;
    height: 66px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-thumb span {
    font-weight: 800;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-panel {
    width: min(1180px, calc(100% - 32px));
    margin: -30px auto 0;
    position: relative;
    z-index: 10;
    display: grid;
    gap: 16px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    padding: 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(251, 191, 36, 0.24);
}

.slim-panel {
    margin-top: -36px;
}

.search-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.search-box input {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--amber-200);
    border-radius: 16px;
    padding: 0 18px;
    background: var(--amber-50);
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.search-box button,
.filter-bar button {
    border: 0;
    border-radius: 14px;
    background: var(--amber-500);
    color: #fff;
    font-weight: 800;
    padding: 0 18px;
    cursor: pointer;
}

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

.filter-bar button {
    min-height: 40px;
    background: var(--amber-100);
    color: var(--amber-700);
}

.filter-bar button.is-active,
.filter-bar button:hover {
    background: var(--amber-500);
    color: #fff;
}

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

.soft-section {
    width: min(1240px, calc(100% - 24px));
    margin-top: 64px;
    padding: 42px 30px;
    border-radius: 34px;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.95), rgba(255, 247, 237, 0.95));
    box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.22);
}

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

.section-heading span,
.page-hero span {
    color: var(--amber-600);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.section-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    color: var(--gray-800);
}

.section-heading p {
    margin: 10px 0 0;
    color: var(--gray-500);
    line-height: 1.7;
}

.section-link {
    flex: none;
    border-radius: 999px;
    padding: 12px 18px;
    color: var(--amber-700);
    background: var(--amber-100);
    font-weight: 800;
}

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

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

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

.movie-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.card-cover {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-200), var(--orange-500));
}

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

.card-cover img,
.rank-cover img,
.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.48s ease;
}

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

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    border-radius: 8px;
    padding: 5px 9px;
    background: var(--red-500);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.card-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    transform: translate(-50%, -50%) scale(0.85);
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(245, 158, 11, 0.9);
    opacity: 0;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.card-body {
    padding: 14px;
    display: grid;
    gap: 8px;
}

.card-body h3,
.rank-card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    color: var(--gray-900);
}

.card-body h3 a,
.rank-card h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-body p,
.rank-card p {
    margin: 0;
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta,
.rank-meta {
    justify-content: space-between;
    color: var(--amber-700);
    font-size: 12px;
    font-weight: 800;
}

.scroll-row {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 2px 4px 18px;
    scroll-snap-type: x mandatory;
}

.scroll-row .movie-card {
    flex: 0 0 310px;
    scroll-snap-align: start;
}

.scroll-row .card-cover {
    aspect-ratio: 16 / 9;
}

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

.category-tile,
.category-panel-head {
    display: grid;
    gap: 10px;
    border-radius: var(--radius-xl);
    padding: 24px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-panel-head:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.category-tile span,
.category-panel-head span {
    font-size: 21px;
    color: var(--amber-700);
    font-weight: 900;
}

.category-tile p,
.category-panel-head p {
    margin: 0;
    color: var(--gray-500);
    line-height: 1.65;
}

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

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

.rank-card {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 16px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
    padding: 12px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.rank-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--amber-200), var(--orange-500));
}

.rank-num {
    position: absolute;
    left: 10px;
    top: 10px;
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 30px;
    border-radius: 10px;
    background: var(--amber-500);
    color: #fff;
    font-weight: 900;
}

.rank-card > div {
    align-self: center;
    display: grid;
    gap: 9px;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #7c2d12 58%, #92400e);
    color: #fff;
}

.page-hero {
    min-height: 360px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 80px 16px 120px;
}

.page-hero > div {
    width: min(860px, 100%);
    display: grid;
    gap: 18px;
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 68px);
}

.category-nav-row {
    width: min(1180px, calc(100% - 32px));
    margin: -52px auto 0;
    position: relative;
    z-index: 4;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.category-nav-row a {
    border-radius: 999px;
    padding: 10px 16px;
    background: var(--amber-100);
    color: var(--amber-700);
    font-weight: 800;
}

.category-nav-row a.is-active,
.category-nav-row a:hover {
    background: var(--amber-500);
    color: #fff;
}

.category-panels {
    display: grid;
    gap: 26px;
}

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

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

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

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

.detail-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58) 55%, rgba(0, 0, 0, 0.18)), linear-gradient(0deg, rgba(17, 24, 39, 0.76), transparent 70%);
}

.detail-head {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 64px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.74);
}

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

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

.detail-poster {
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-300), var(--orange-500));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.detail-copy {
    display: grid;
    gap: 22px;
    color: #fff;
}

.detail-copy h1 {
    font-size: clamp(42px, 6vw, 70px);
}

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

.tag {
    border-radius: 999px;
    padding: 8px 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.watch-section {
    width: min(1040px, calc(100% - 32px));
    margin: -80px auto 0;
    position: relative;
    z-index: 4;
}

.movie-player {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 80px rgba(17, 24, 39, 0.32);
    aspect-ratio: 16 / 9;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    border: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    align-content: center;
    color: #fff;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.22), rgba(0, 0, 0, 0.66));
    cursor: pointer;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-overlay span {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--amber-500);
    font-size: 38px;
    box-shadow: 0 18px 45px rgba(245, 158, 11, 0.38);
}

.player-overlay strong {
    font-size: 20px;
}

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

.detail-content {
    padding-top: 58px;
}

.detail-article {
    border-radius: 30px;
    background: #fff;
    padding: clamp(24px, 4vw, 46px);
    box-shadow: var(--shadow-soft);
}

.detail-article h2 {
    margin: 0 0 14px;
    color: var(--gray-900);
    font-size: 28px;
}

.detail-article h2:not(:first-child) {
    margin-top: 36px;
}

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

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

.info-list div {
    border-radius: 16px;
    padding: 14px 16px;
    background: var(--amber-50);
}

.info-list dt {
    color: var(--amber-700);
    font-weight: 900;
    margin-bottom: 6px;
}

.info-list dd {
    margin: 0;
    color: var(--gray-700);
}

.site-footer {
    margin-top: 76px;
    background: linear-gradient(90deg, #78350f, #7c2d12, #713f12);
    color: #fff;
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
}

.footer-grid h2,
.footer-grid h3,
.footer-grid p {
    margin-top: 0;
}

.footer-grid p,
.footer-grid a {
    color: #fde68a;
    line-height: 1.75;
}

.footer-grid a {
    display: block;
    margin: 8px 0;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 230, 138, 0.18);
    padding: 20px 16px;
    text-align: center;
    color: #fde68a;
}

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

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

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

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

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

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

@media (max-width: 760px) {
    .nav-shell {
        min-height: 68px;
    }

    .brand-text strong {
        font-size: 20px;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
    }

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

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

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

    .nav-links a:hover {
        background: var(--amber-100);
        transform: none;
    }

    .hero-slider {
        height: 76vh;
        min-height: 560px;
    }

    .hero-copy {
        gap: 18px;
    }

    .hero-copy h1,
    .detail-copy h1,
    .page-hero h1 {
        letter-spacing: -0.03em;
    }

    .hero-controls {
        bottom: 112px;
    }

    .hero-thumbs {
        grid-template-columns: 1fr;
        bottom: 18px;
    }

    .hero-thumb:nth-child(n+2) {
        display: none;
    }

    .search-panel {
        margin-top: -22px;
        padding: 16px;
    }

    .search-box {
        grid-template-columns: 1fr;
    }

    .search-box button {
        min-height: 46px;
    }

    .section-heading {
        display: grid;
        align-items: start;
    }

    .movie-grid,
    .featured-grid,
    .all-grid,
    .category-samples {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .card-body {
        padding: 12px;
    }

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

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

    .soft-section {
        padding: 30px 16px;
    }

    .scroll-row .movie-card {
        flex-basis: 260px;
    }

    .page-hero {
        min-height: 320px;
        padding-bottom: 100px;
    }

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

    .detail-head {
        padding-bottom: 120px;
    }

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

    .detail-poster {
        width: min(250px, 74vw);
    }

    .watch-section {
        margin-top: -92px;
    }

    .movie-player {
        border-radius: 20px;
    }

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