:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(146, 64, 14, 0.16);
    --soft-shadow: 0 12px 28px rgba(17, 24, 39, 0.10);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--amber-50), var(--white) 260px);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.96));
    box-shadow: 0 8px 24px rgba(146, 64, 14, 0.10);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.30);
    font-size: 15px;
}

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

.desktop-nav a {
    position: relative;
    transition: color 0.2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

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

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

.menu-toggle {
    display: none;
    border: 0;
    background: var(--white);
    color: var(--gray-700);
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: var(--soft-shadow);
}

.mobile-nav {
    display: none;
    padding: 10px 20px 18px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

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

.mobile-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--gray-700);
}

.mobile-nav a:hover {
    background: var(--amber-100);
    color: var(--amber-600);
}

.hero-carousel {
    position: relative;
    min-height: 670px;
    overflow: hidden;
    background: #1f1307;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(10px) saturate(1.18);
    transform: scale(1.06);
    opacity: 0.52;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(245, 158, 11, 0.42), transparent 32%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(68, 38, 14, 0.72) 52%, rgba(17, 24, 39, 0.50));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    min-height: 670px;
    margin: 0 auto;
    padding: 72px 20px 86px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 390px;
    gap: 64px;
    align-items: center;
}

.hero-copy {
    color: var(--white);
}

.eyebrow,
.section-heading span,
.page-hero span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    color: #fff7ed;
    background: rgba(245, 158, 11, 0.22);
    border: 1px solid rgba(253, 230, 138, 0.35);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(44px, 7vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 22px;
    color: #ffedd5;
    font-size: 19px;
}

.hero-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.hero-tags span,
.detail-tags span {
    padding: 7px 13px;
    border-radius: 999px;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 14px;
    font-weight: 700;
}

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

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

.primary-button {
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 16px 30px rgba(249, 115, 22, 0.30);
}

.secondary-button {
    color: var(--amber-700, #b45309);
    background: var(--white);
    border: 2px solid rgba(245, 158, 11, 0.65);
}

.secondary-button.light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.45);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 34px rgba(249, 115, 22, 0.24);
}

.hero-poster {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.46);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) translateY(-6px);
}

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

.hero-controls {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
}

.hero-controls button {
    border: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    font-size: 24px;
    line-height: 1;
}

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

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

.hero-dots button.active {
    width: 28px;
    background: var(--white);
}

.feature-strip {
    max-width: 1180px;
    margin: -42px auto 0;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 0 20px;
}

.feature-strip div {
    min-height: 110px;
    padding: 24px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-strip strong {
    display: block;
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.feature-strip span {
    color: var(--gray-500);
}

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

.light-section,
.warm-section {
    max-width: none;
    padding-left: max(20px, calc((100vw - 1180px) / 2 + 20px));
    padding-right: max(20px, calc((100vw - 1180px) / 2 + 20px));
}

.light-section {
    background: linear-gradient(180deg, var(--amber-50), var(--white));
}

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

.section-heading {
    margin-bottom: 36px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.centered span,
.section-heading span {
    color: var(--amber-700, #b45309);
    background: var(--amber-100);
    border-color: var(--amber-200);
}

.section-heading.centered span {
    margin: 0 auto;
}

.section-heading h2,
.page-hero h1,
.content-panel h2,
.side-panel h2 {
    margin: 14px 0 10px;
    font-size: clamp(30px, 4.4vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
    margin: 0;
    color: var(--gray-500);
    font-size: 18px;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--soft-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card.hidden,
.wide-card.hidden {
    display: none;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(146, 64, 14, 0.18);
}

.movie-poster {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), #fed7aa);
}

.movie-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.type-badge,
.rank-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(245, 158, 11, 0.95);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.rank-badge {
    left: 12px;
    right: auto;
    background: rgba(239, 68, 68, 0.96);
}

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

.movie-card-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
    color: var(--gray-900);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card:hover h3,
.wide-card:hover h3 {
    color: var(--amber-600);
}

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

.movie-meta-row,
.wide-meta,
.detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 700;
}

.movie-meta-row span:first-child,
.wide-meta span:first-child {
    color: var(--amber-600);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.category-pills a {
    display: inline-flex;
    padding: 13px 18px;
    border-radius: 999px;
    color: var(--amber-700, #b45309);
    background: var(--white);
    border: 1px solid var(--amber-200);
    box-shadow: var(--soft-shadow);
    font-weight: 800;
}

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

.wide-card {
    display: grid;
    grid-template-columns: 54px 120px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 160px;
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--soft-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.wide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(146, 64, 14, 0.16);
}

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

.wide-poster {
    border-radius: 14px;
    overflow: hidden;
    background: var(--amber-100);
}

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

.wide-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wide-info p {
    margin: 0 0 12px;
    color: var(--gray-500);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 70px;
    border-radius: 32px;
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 24px 60px rgba(249, 115, 22, 0.28);
}

.cta-panel h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 44px);
}

.cta-panel p {
    margin: 0;
    max-width: 760px;
    color: #fff7ed;
    font-size: 18px;
}

.page-hero {
    color: var(--white);
    background:
        radial-gradient(circle at 74% 22%, rgba(253, 230, 138, 0.42), transparent 30%),
        linear-gradient(120deg, #78350f, var(--amber-600), var(--orange-600));
}

.compact-hero {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.compact-hero div {
    max-width: 840px;
}

.compact-hero span {
    margin: 0 auto;
}

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

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

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

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 160px;
    overflow: hidden;
    background: var(--amber-100);
}

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

.category-info {
    padding: 24px;
}

.category-info h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.category-info p {
    margin: 0 0 16px;
    color: var(--gray-500);
}

.category-info span {
    color: var(--amber-600);
    font-weight: 900;
}

.toolbar {
    display: grid;
    gap: 18px;
    margin-bottom: 30px;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.sticky-toolbar {
    position: sticky;
    top: 86px;
    z-index: 20;
}

.search-input {
    width: 100%;
    min-height: 52px;
    border: 2px solid var(--amber-100);
    border-radius: 999px;
    padding: 0 22px;
    outline: none;
    color: var(--gray-900);
    background: var(--gray-50);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

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

.filter-button {
    border: 0;
    padding: 9px 15px;
    border-radius: 999px;
    color: var(--gray-700);
    background: var(--amber-50);
    font-weight: 800;
    transition: color 0.2s ease, background 0.2s ease;
}

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

.empty-state {
    display: none;
    margin: 30px 0 0;
    text-align: center;
    color: var(--gray-500);
    font-weight: 800;
}

.empty-state.show {
    display: block;
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    color: var(--white);
    background: #1f1307;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(12px) saturate(1.2);
    transform: scale(1.08);
    opacity: 0.42;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.38), transparent 34%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.70));
}

.detail-wrap {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    min-height: 560px;
    margin: 0 auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #fde68a;
    font-weight: 700;
}

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

.detail-info h1 {
    margin: 0 0 16px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.detail-one-line {
    margin: 0;
    max-width: 800px;
    color: #ffedd5;
    font-size: 19px;
}

.detail-meta {
    color: #fde68a;
    margin: 18px 0 26px;
}

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

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #000000;
    box-shadow: var(--shadow);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    border: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.70));
}

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

.player-overlay span {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 18px 38px rgba(249, 115, 22, 0.36);
    font-size: 34px;
    padding-left: 6px;
}

.player-overlay strong {
    font-size: 20px;
    letter-spacing: 0.02em;
}

.content-panel,
.side-panel {
    margin-top: 28px;
    padding: 28px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.content-panel h2,
.side-panel h2 {
    font-size: 28px;
}

.content-panel p {
    margin: 0 0 22px;
    color: var(--gray-700);
    font-size: 17px;
}

.content-panel p:last-child {
    margin-bottom: 0;
}

.side-panel {
    margin-top: 0;
    position: sticky;
    top: 96px;
}

.side-panel dl {
    margin: 0;
    display: grid;
    gap: 14px;
}

.side-panel dl div {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray-200);
}

.side-panel dt {
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 800;
}

.side-panel dd {
    margin: 4px 0 0;
    color: var(--gray-900);
    font-weight: 900;
}

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

.site-footer {
    color: #fffbeb;
    background: linear-gradient(180deg, #78350f, #451a03);
}

.footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 54px 20px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 34px;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 14px;
    color: #fde68a;
}

.site-footer p,
.site-footer a {
    color: #ffedd5;
    font-size: 14px;
}

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

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

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

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

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

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

    .hero-content {
        gap: 36px;
        padding-top: 54px;
    }

    .hero-poster,
    .detail-poster {
        max-width: 320px;
    }

    .feature-strip,
    .card-grid,
    .poster-grid,
    .featured-grid,
    .category-grid,
    .wide-grid,
    .ranking-list,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .side-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .brand {
        font-size: 19px;
    }

    .hero-carousel,
    .hero-content {
        min-height: 720px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-poster {
        max-width: 230px;
    }

    .feature-strip,
    .card-grid,
    .poster-grid,
    .featured-grid,
    .category-grid,
    .wide-grid,
    .ranking-list,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .wide-card {
        grid-template-columns: 44px 92px minmax(0, 1fr);
        gap: 12px;
    }

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

    .light-section,
    .warm-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 24px;
    }

    .detail-wrap {
        padding: 44px 16px;
    }

    .detail-poster {
        max-width: 220px;
    }

    .player-overlay span {
        width: 66px;
        height: 66px;
        font-size: 28px;
    }
}
