:root {
    --blue-50: #eff6ff;
    --cyan-50: #ecfeff;
    --blue-600: #2563eb;
    --cyan-600: #0891b2;
    --teal-600: #0d9488;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-100: #f1f5f9;
    --white: #ffffff;
    --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.20);
    --radius-xl: 20px;
    --radius-2xl: 26px;
    --radius-3xl: 34px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: linear-gradient(90deg, var(--blue-600), var(--cyan-600), var(--teal-600));
    box-shadow: 0 14px 35px rgba(8, 145, 178, 0.28);
}

.header-inner {
    width: min(1200px, calc(100% - 32px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark,
.footer-brand span {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    transition: transform 0.25s ease, background 0.25s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.28);
}

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

.brand-text strong {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
}

.brand-text em {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
    font-style: normal;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    white-space: nowrap;
}

.desktop-nav a {
    font-weight: 650;
    color: rgba(255, 255, 255, 0.94);
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
    color: rgba(255, 255, 255, 0.72);
    transform: translateY(-1px);
}

.site-search,
.mobile-search {
    display: flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.site-search input,
.mobile-search input {
    width: 210px;
    border: 0;
    outline: 0;
    color: var(--white);
    background: transparent;
    padding: 9px 12px;
}

.site-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.site-search button,
.mobile-search button {
    border: 0;
    border-radius: 999px;
    color: var(--blue-600);
    background: var(--white);
    padding: 9px 16px;
    font-weight: 700;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.mobile-panel {
    display: none;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 20px;
}

.mobile-panel.is-open {
    display: block;
}

.mobile-panel nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.mobile-panel nav a {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
}

.header-wave {
    width: 100%;
    height: 26px;
    color: var(--blue-50);
}

.page-shell {
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--slate-950);
}

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

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.52), rgba(2, 6, 23, 0.08));
}

.hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: max(32px, calc((100% - 1200px) / 2));
    width: min(650px, calc(100% - 64px));
    transform: translateY(-50%);
    color: var(--white);
}

.hero-pill,
.movie-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(90deg, #06b6d4, #2563eb);
    padding: 7px 14px;
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-content h1 {
    margin: 22px 0 16px;
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.02rem, 2.5vw, 1.35rem);
    line-height: 1.75;
}

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

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

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(90deg, #06b6d4, #2563eb);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.30);
}

.btn-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.btn-light {
    color: var(--blue-600);
    background: var(--white);
}

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

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

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

.content-section {
    position: relative;
    padding: 74px 0;
}

.section-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.wave-section::before,
.wave-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    opacity: 0.18;
    filter: blur(12px);
}

.wave-section::before {
    top: 44px;
    left: -120px;
    width: 260px;
    height: 260px;
    background: #38bdf8;
}

.wave-section::after {
    right: -90px;
    bottom: 0;
    width: 210px;
    height: 210px;
    background: #2dd4bf;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.heading-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    font-weight: 900;
    box-shadow: var(--shadow-sm);
}

.section-heading h2 {
    margin: 0;
    color: var(--slate-900);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.section-heading p {
    margin: 5px 0 0;
    color: var(--slate-600);
}

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #164e63);
}

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

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

.poster-link::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.62), transparent 62%);
    transition: opacity 0.25s ease;
}

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

.duration-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    right: 12px;
    bottom: 12px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(2, 6, 23, 0.78);
    padding: 5px 10px;
    font-size: 0.76rem;
    font-weight: 800;
}

.rank-badge {
    top: 12px;
    bottom: auto;
    left: 12px;
    right: auto;
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.movie-body {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.movie-body h3 {
    display: -webkit-box;
    min-height: 2.9em;
    margin: 0;
    overflow: hidden;
    color: var(--slate-900);
    font-size: 1.08rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-body h3 a:hover,
.ranking-title:hover,
.text-link:hover {
    color: var(--blue-600);
}

.movie-body p {
    display: -webkit-box;
    min-height: 3.9em;
    margin: 0;
    overflow: hidden;
    color: var(--slate-600);
    font-size: 0.92rem;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--slate-500);
    font-size: 0.82rem;
}

.movie-meta span {
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--slate-100);
}

.ranking-section {
    background: rgba(255, 255, 255, 0.48);
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 58px 128px 1fr;
    gap: 16px;
    align-items: center;
    border-radius: var(--radius-xl);
    background: var(--white);
    padding: 14px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ranking-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.ranking-number {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, #f97316, #ef4444);
    font-size: 1.45rem;
    font-weight: 900;
}

.ranking-cover {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f172a, #155e75);
}

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

.ranking-title {
    display: block;
    margin-bottom: 7px;
    color: var(--slate-900);
    font-size: 1.06rem;
    font-weight: 800;
}

.ranking-row p {
    display: -webkit-box;
    margin: 0 0 9px;
    overflow: hidden;
    color: var(--slate-600);
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ranking-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--slate-500);
    font-size: 0.82rem;
}

.ranking-tags a,
.ranking-tags span {
    border-radius: 999px;
    background: var(--blue-50);
    padding: 4px 9px;
}

.horizontal-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 300px;
    gap: 22px;
    overflow-x: auto;
    padding: 4px 4px 22px;
    scroll-snap-type: x proximity;
}

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

.editorial-section {
    color: var(--white);
    background: linear-gradient(90deg, var(--blue-600), var(--cyan-600));
}

.editorial-section .section-heading h2,
.editorial-section .section-heading p {
    color: var(--white);
}

.editorial-section .heading-icon {
    background: rgba(255, 255, 255, 0.18);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.editorial-side {
    display: grid;
    gap: 18px;
}

.movie-card-wide {
    display: grid;
    grid-template-columns: 42% 1fr;
}

.movie-card-wide .poster-link {
    height: 100%;
    min-height: 190px;
}

.movie-card-compact .movie-body p {
    display: none;
}

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

.category-tile {
    display: grid;
    min-height: 180px;
    align-content: start;
    gap: 10px;
    border-radius: var(--radius-2xl);
    padding: 22px;
    color: var(--white);
    background: linear-gradient(135deg, #2563eb, #06b6d4 55%, #0d9488);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile span {
    width: fit-content;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    padding: 5px 11px;
    font-size: 0.8rem;
    font-weight: 800;
}

.category-tile strong {
    font-size: 1.4rem;
}

.category-tile em {
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
    line-height: 1.65;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    margin-top: 52px;
    border-radius: var(--radius-3xl);
    padding: 56px 32px;
    text-align: center;
    color: var(--white);
    background: linear-gradient(90deg, #2563eb, #06b6d4, #0d9488);
    box-shadow: var(--shadow-md);
}

.cta-panel h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-panel p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
}

.site-footer {
    color: #cbd5e1;
    background: var(--slate-950);
    padding: 58px 0 24px;
}

.footer-grid,
.footer-bottom {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 42px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.25rem;
}

.site-footer p {
    color: #94a3b8;
    line-height: 1.75;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #22d3ee;
    font-size: 1.08rem;
}

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

.footer-links a:hover {
    color: #22d3ee;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    margin-top: 42px;
    padding-top: 20px;
}

.sub-page {
    padding-top: 0;
}

.sub-hero {
    position: relative;
    min-height: 340px;
    display: grid;
    place-items: center;
    padding: 60px 16px;
    color: var(--white);
    text-align: center;
    background: radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.30), transparent 30%), linear-gradient(135deg, #0f172a, #164e63 55%, #0f766e);
}

.sub-hero > div {
    width: min(820px, 100%);
}

.sub-hero span {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    padding: 7px 14px;
    font-weight: 800;
}

.sub-hero h1 {
    margin: 16px 0 12px;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: 1.08;
}

.sub-hero p {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    border-radius: var(--radius-2xl);
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.category-cover-stack a {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f172a, #164e63);
}

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

.category-overview-body {
    display: grid;
    align-content: center;
    gap: 10px;
}

.category-overview-body span {
    width: fit-content;
    border-radius: 999px;
    color: var(--blue-600);
    background: var(--blue-50);
    padding: 5px 11px;
    font-weight: 800;
}

.category-overview-body h2 {
    margin: 0;
    font-size: 1.55rem;
}

.category-overview-body p {
    margin: 0;
    color: var(--slate-600);
    line-height: 1.7;
}

.text-link {
    width: fit-content;
    color: var(--blue-600);
    font-weight: 800;
}

.filter-panel {
    display: grid;
    gap: 14px;
    border-radius: var(--radius-2xl);
    background: var(--white);
    margin-bottom: 28px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.filter-panel input {
    width: 100%;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    outline: 0;
    padding: 14px 18px;
    color: var(--slate-900);
    background: var(--blue-50);
}

.filter-panel input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16);
}

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

.filter-buttons button {
    border: 0;
    border-radius: 999px;
    color: var(--slate-600);
    background: var(--slate-100);
    padding: 8px 14px;
    cursor: pointer;
}

.filter-buttons button.is-active,
.filter-buttons button:hover {
    color: var(--white);
    background: linear-gradient(90deg, #06b6d4, #2563eb);
}

.search-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
}

.search-panel span {
    color: var(--slate-500);
    font-weight: 700;
}

.empty-state {
    display: none;
    border-radius: var(--radius-2xl);
    margin-top: 24px;
    padding: 36px;
    text-align: center;
    color: var(--slate-600);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

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

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--slate-600);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

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

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-3xl);
    aspect-ratio: 16 / 9;
    background: var(--slate-950);
    box-shadow: var(--shadow-lg);
}

.movie-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--slate-950);
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 0;
    display: grid;
    place-content: center;
    gap: 12px;
    color: var(--white);
    cursor: pointer;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.42), rgba(2, 6, 23, 0.18));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    box-shadow: 0 24px 50px rgba(37, 99, 235, 0.38);
    font-size: 2.4rem;
    text-indent: 6px;
}

.play-overlay strong {
    font-size: 1.2rem;
}

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

.detail-info {
    display: grid;
    align-content: center;
    gap: 18px;
    border-radius: var(--radius-3xl);
    background: rgba(255, 255, 255, 0.86);
    padding: 34px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.detail-info h1 {
    margin: 0;
    color: var(--slate-900);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.12;
}

.detail-one-line {
    margin: 0;
    color: var(--slate-700);
    font-size: 1.08rem;
    line-height: 1.78;
}

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

.detail-meta span,
.tag-cloud span {
    border-radius: 999px;
    color: var(--slate-600);
    background: var(--slate-100);
    padding: 7px 12px;
    font-size: 0.88rem;
    font-weight: 700;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
}

.prose-card {
    border-radius: var(--radius-2xl);
    background: var(--white);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.prose-card h2 {
    margin: 0 0 14px;
    font-size: 1.55rem;
}

.prose-card p {
    margin: 0;
    color: var(--slate-700);
    line-height: 1.9;
}

.related-section {
    padding-top: 60px;
}

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

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

    .site-search {
        margin-left: auto;
    }

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

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

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

@media (max-width: 900px) {
    .header-inner {
        min-height: 70px;
    }

    .site-search {
        display: none;
    }

    .hero-slider {
        height: 520px;
    }

    .movie-grid,
    .ranking-grid,
    .editorial-grid,
    .detail-hero,
    .detail-content,
    .category-overview-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .category-cover-stack {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .brand-text strong {
        font-size: 1.15rem;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

    .hero-slider {
        height: 480px;
    }

    .hero-content {
        left: 20px;
        width: calc(100% - 40px);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .content-section {
        padding: 54px 0;
    }

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

    .horizontal-scroll {
        grid-auto-columns: 82vw;
    }

    .ranking-row {
        grid-template-columns: 46px 96px 1fr;
        gap: 12px;
        padding: 12px;
    }

    .ranking-number {
        width: 44px;
        height: 44px;
        border-radius: 15px;
        font-size: 1.1rem;
    }

    .ranking-row p,
    .ranking-tags span:nth-child(n+3) {
        display: none;
    }

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

    .detail-info,
    .prose-card {
        padding: 22px;
    }

    .play-overlay span {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}
