:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-50: #fff7ed;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --red-400: #f87171;
    --pink-400: #f472b6;
    --blue-400: #60a5fa;
    --cyan-400: #22d3ee;
    --green-400: #4ade80;
    --teal-400: #2dd4bf;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 10px 25px rgba(17, 24, 39, 0.08);
    --shadow-md: 0 18px 45px rgba(17, 24, 39, 0.12);
    --shadow-lg: 0 28px 80px rgba(17, 24, 39, 0.22);
    --radius-xl: 22px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-800);
    background: linear-gradient(135deg, var(--amber-50), var(--orange-50), var(--amber-50));
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

.nav-wrap {
    display: flex;
    align-items: center;
    min-height: 66px;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-400), var(--orange-400));
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.28);
    transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
    transform: rotate(10deg) scale(1.05);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 650;
    transition: color 0.2s ease;
}

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

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 6px;
}

.nav-search input,
.hero-search input,
.filter-bar input,
.filter-bar select {
    border: 1px solid var(--amber-200);
    border-radius: 999px;
    background: var(--white);
    color: var(--gray-800);
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-search input {
    width: 220px;
    padding: 10px 14px;
}

.nav-search input:focus,
.hero-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--amber-400);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.nav-search button,
.hero-search button {
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.24);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: none;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.1);
}

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

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.08));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(650px, 92vw);
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--amber-400);
    font-size: 18px;
    font-weight: 800;
}

.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 8px rgba(251, 191, 36, 0.18);
}

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

.hero p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 14px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(245, 158, 11, 0.86);
    backdrop-filter: blur(10px);
    font-weight: 700;
}

.hero-meta span:nth-child(n + 2) {
    background: rgba(255, 255, 255, 0.16);
}

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

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

.primary-btn {
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 18px 36px rgba(245, 158, 11, 0.34);
}

.ghost-btn {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(10px);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.45);
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.68);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    z-index: 5;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

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

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

.page-stack {
    padding: 64px 0;
}

.page-stack > * + * {
    margin-top: 64px;
}

.section-block,
.section-panel {
    position: relative;
}

.section-panel {
    padding: 34px;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.section-head h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--gray-800);
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.15;
}

.section-head a {
    color: var(--amber-600);
    font-weight: 800;
}

.section-icon {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
    font-size: 18px;
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.22);
}

.scroll-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 330px);
    gap: 22px;
    overflow-x: auto;
    padding: 2px 4px 22px;
    scroll-snap-type: x proximity;
}

.card-grid {
    display: grid;
    gap: 22px;
}

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

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

.movie-card {
    display: block;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(0);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.poster-wrap {
    position: relative;
    display: block;
    height: 255px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), var(--orange-50));
}

.wide-card .poster-wrap {
    height: 190px;
}

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.type-badge,
.year-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 9px;
    color: var(--white);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.type-badge {
    top: 10px;
    right: 10px;
    background: rgba(245, 158, 11, 0.9);
}

.year-badge {
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.68);
}

.card-body {
    display: block;
    padding: 17px;
}

.card-body strong {
    display: -webkit-box;
    min-height: 48px;
    margin-bottom: 8px;
    overflow: hidden;
    color: var(--gray-800);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.42;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card:hover .card-body strong {
    color: var(--amber-600);
}

.card-desc {
    display: -webkit-box;
    min-height: 42px;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    color: var(--gray-500);
    font-size: 12px;
}

.card-meta em {
    display: inline-flex;
    max-width: 55%;
    padding: 5px 9px;
    overflow: hidden;
    border-radius: 999px;
    color: var(--amber-700, #b45309);
    background: var(--amber-50);
    font-style: normal;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-tags {
    display: block;
    margin-top: 8px;
    overflow: hidden;
    color: var(--gray-500);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.category-card,
.overview-card {
    position: relative;
    min-height: 170px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--gray-900);
    box-shadow: var(--shadow-sm);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover,
.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-card img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 0.4s ease;
}

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

.category-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.8));
}

.category-card strong,
.category-card em {
    position: absolute;
    left: 18px;
    right: 18px;
    z-index: 2;
    color: var(--white);
}

.category-card strong {
    bottom: 52px;
    font-size: 22px;
}

.category-card em {
    bottom: 18px;
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    font-style: normal;
    line-height: 1.4;
    opacity: 0.86;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.compact-list,
.rank-list {
    display: grid;
    gap: 14px;
}

.compact-card,
.rank-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-card:hover,
.rank-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.compact-card img {
    width: 116px;
    height: 76px;
    flex-shrink: 0;
    border-radius: 12px;
    object-fit: cover;
}

.compact-card strong,
.rank-info strong {
    display: block;
    color: var(--gray-800);
    font-weight: 800;
}

.compact-card small,
.rank-info small,
.rank-info em {
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 13px;
    font-style: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-no {
    width: 42px;
    flex-shrink: 0;
    color: transparent;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 25px;
    font-weight: 900;
    text-align: center;
}

.rank-item img {
    width: 94px;
    height: 62px;
    flex-shrink: 0;
    border-radius: 12px;
    object-fit: cover;
}

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

.large-rank .rank-item {
    min-height: 114px;
}

.sub-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    color: var(--white);
    background: radial-gradient(circle at 15% 20%, rgba(251, 191, 36, 0.42), transparent 34%), linear-gradient(135deg, #111827, #7c2d12 48%, #f59e0b);
}

.sub-hero h1 {
    max-width: 830px;
}

.sub-hero p {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.hero-search {
    display: flex;
    width: min(720px, 100%);
    gap: 10px;
    margin-top: 30px;
}

.hero-search input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
}

.hero-search button {
    padding: 14px 24px;
}

.overview-card {
    display: flex;
    min-height: 240px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: var(--white);
}

.overview-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82));
}

.overview-images {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

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

.overview-copy {
    position: relative;
    z-index: 2;
}

.overview-copy strong,
.overview-copy em {
    display: block;
}

.overview-copy strong {
    font-size: 24px;
    font-weight: 900;
}

.overview-copy em {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
    font-size: 14px;
}

.filter-bar {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 12px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
}

.empty-state {
    display: none;
    padding: 34px;
    border-radius: var(--radius-lg);
    color: var(--gray-600);
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

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

.detail-hero {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    color: var(--white);
    background: var(--gray-900);
}

.detail-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) saturate(1.08);
    transform: scale(1.03);
}

.detail-hero-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.24));
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 72px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

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

.breadcrumb em {
    font-style: normal;
}

.detail-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
}

.detail-hero p {
    max-width: 820px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
}

.detail-wrap {
    padding: 56px 0 70px;
}

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

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    overflow: hidden;
    background: #000000;
}

.player-cover.is-hidden {
    display: none;
}

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    filter: saturate(1.1);
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2), rgba(0, 0, 0, 0.72));
}

.play-orb {
    position: relative;
    z-index: 4;
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.38);
    font-size: 35px;
    line-height: 1;
    padding-left: 5px;
    transition: transform 0.2s ease;
}

.player-cover:hover .play-orb {
    transform: scale(1.08);
}

.detail-grid {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 34px;
    margin-top: 38px;
}

.detail-poster {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

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

.detail-content {
    padding: 34px;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.detail-content h2 {
    margin: 0 0 16px;
    color: var(--gray-900);
    font-size: 25px;
}

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

.detail-content p {
    margin: 0 0 14px;
    color: var(--gray-700);
    font-size: 16px;
}

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

.detail-tags span {
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--amber-600);
    background: var(--amber-50);
    font-size: 13px;
    font-weight: 800;
}

.related-block {
    margin-top: 54px;
}

.search-results-wrap {
    min-height: 420px;
}

.site-footer {
    padding: 44px 0;
    color: var(--gray-600);
    background: var(--white);
    border-top: 1px solid rgba(245, 158, 11, 0.16);
}

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

.footer-brand {
    margin-bottom: 14px;
}

.site-footer h3 {
    margin: 0 0 12px;
    color: var(--gray-800);
}

.site-footer p {
    margin: 0;
    max-width: 430px;
}

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

.footer-links a:hover {
    color: var(--amber-600);
}

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

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

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

    .large-rank {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-links {
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 24px 18px;
        background: var(--white);
        box-shadow: 0 18px 32px rgba(17, 24, 39, 0.1);
    }

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

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
    }

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

    .hero-overlay {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.34));
    }

    .hero-content {
        align-items: flex-end;
        padding-bottom: 78px;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
        font-size: 29px;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }

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

    .detail-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .filter-bar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand-text {
        font-size: 18px;
    }

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

    .hero p,
    .detail-hero p,
    .sub-hero p {
        font-size: 16px;
    }

    .hero-actions,
    .hero-search {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .ghost-btn,
    .hero-search button {
        width: 100%;
    }

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

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

    .poster-wrap {
        height: 210px;
    }

    .wide-card .poster-wrap {
        height: 170px;
    }

    .card-body {
        padding: 13px;
    }

    .card-body strong {
        min-height: 44px;
        font-size: 15px;
    }

    .card-desc {
        min-height: 38px;
        font-size: 13px;
    }

    .section-panel,
    .detail-content {
        padding: 22px;
    }

    .filter-bar {
        grid-template-columns: 1fr;
    }

    .rank-item {
        align-items: flex-start;
    }

    .rank-no {
        width: 34px;
        font-size: 22px;
    }

    .rank-item img {
        width: 82px;
        height: 58px;
    }

    .player-section {
        border-radius: 18px;
    }

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

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

    .scroll-row {
        grid-auto-columns: minmax(250px, 84vw);
    }

    .poster-wrap,
    .wide-card .poster-wrap {
        height: 230px;
    }
}
