:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.74);
    --panel-solid: #111827;
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --soft: #94a3b8;
    --accent: #fbbf24;
    --accent-strong: #f59e0b;
    --danger: #fb7185;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow-xl: 0 28px 80px rgba(0, 0, 0, 0.45);
    --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 0%, rgba(251, 191, 36, 0.16), transparent 28rem),
        radial-gradient(circle at 90% 12%, rgba(56, 189, 248, 0.12), transparent 32rem),
        linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #111827;
    background: linear-gradient(135deg, var(--accent), #fde68a);
    box-shadow: 0 12px 28px rgba(251, 191, 36, 0.24);
}

.brand-name {
    font-size: 20px;
    background: linear-gradient(90deg, var(--accent), #fff7ed);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

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

.desktop-nav a,
.mobile-nav a {
    color: var(--muted);
    font-weight: 700;
    transition: color 0.2s ease;
}

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

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.big-search input,
.filter-panel input,
.filter-panel select {
    color: var(--text);
    border: 1px solid rgba(148, 163, 184, 0.28);
    outline: 0;
    background: rgba(15, 23, 42, 0.78);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    width: 240px;
    height: 40px;
    border-radius: 999px;
    padding: 0 96px 0 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(251, 191, 36, 0.82);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.header-search button,
.mobile-search button,
.big-search button {
    border: 0;
    color: #111827;
    cursor: pointer;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #fde68a);
}

.header-search button {
    position: absolute;
    right: 4px;
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.7);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
}

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

.mobile-search {
    display: flex;
    gap: 8px;
}

.mobile-search input {
    min-width: 0;
    flex: 1;
    border-radius: 999px;
    padding: 10px 14px;
}

.mobile-search button {
    border-radius: 999px;
    padding: 0 16px;
}

.hero-carousel {
    position: relative;
    height: 72vh;
    min-height: 560px;
    overflow: hidden;
    background: #020617;
}

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

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.58) 45%, rgba(2, 6, 23, 0.12)),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.35) 45%, rgba(2, 6, 23, 0.34) 100%);
}

.hero-copy {
    position: absolute;
    left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    bottom: 96px;
    width: min(760px, calc(100% - 48px));
    z-index: 2;
}

.hero-labels,
.card-meta-row,
.movie-info-line,
.detail-meta,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-labels span,
.category-chip,
.rating-chip,
.poster-type,
.rank-badge,
.tag-line span,
.tag-cloud span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 800;
}

.hero-labels span {
    padding: 8px 14px;
    color: #111827;
    background: rgba(251, 191, 36, 0.92);
}

.hero-copy h1,
.hero-copy h2 {
    max-width: 760px;
    margin: 20px 0 16px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

.hero-copy p {
    max-width: 680px;
    margin: 0 0 28px;
    color: #e2e8f0;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.72;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.primary-btn,
.ghost-btn,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
    padding: 0 22px;
    color: #111827;
    background: linear-gradient(135deg, var(--accent), #fde68a);
    box-shadow: 0 18px 36px rgba(251, 191, 36, 0.2);
}

.ghost-btn,
.section-link {
    padding: 0 18px;
    color: var(--text);
    border: 1px solid rgba(248, 250, 252, 0.18);
    background: rgba(15, 23, 42, 0.58);
}

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

.ghost-btn:hover,
.section-link:hover {
    border-color: rgba(251, 191, 36, 0.72);
    color: var(--accent);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(248, 250, 252, 0.16);
    border-radius: 999px;
    color: var(--text);
    background: rgba(15, 23, 42, 0.72);
    cursor: pointer;
    font-size: 38px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease, color 0.2s ease;
}

.hero-arrow:hover {
    color: #111827;
    background: var(--accent);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.48);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

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

.home-search-band {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    align-items: center;
    gap: 32px;
    margin-top: -48px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.search-band-copy span,
.section-heading span,
.page-hero span,
.category-card span {
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.search-band-copy h2,
.section-heading h2,
.page-hero h1,
.category-card h2 {
    margin: 8px 0 12px;
    line-height: 1.1;
}

.search-band-copy h2,
.section-heading h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.search-band-copy p,
.section-heading p,
.page-hero p,
.category-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.big-search {
    display: flex;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.56);
}

.big-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    background: transparent;
}

.big-search button {
    min-height: 46px;
    border-radius: 999px;
    padding: 0 22px;
}

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

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

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

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

.movie-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(251, 191, 36, 0.48);
    background: rgba(15, 23, 42, 0.94);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
}

.movie-card-link {
    display: block;
    height: 100%;
}

.movie-poster {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 20%, rgba(251, 191, 36, 0.18), transparent 12rem),
        #020617;
}

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), transparent 45%);
}

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

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

.poster-type,
.rank-badge {
    position: absolute;
    z-index: 2;
    left: 12px;
    bottom: 12px;
    padding: 7px 10px;
    color: #111827;
    background: rgba(251, 191, 36, 0.92);
    font-size: 12px;
}

.rank-badge {
    top: 12px;
    bottom: auto;
    background: linear-gradient(135deg, var(--accent), #fde68a);
}

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

.card-meta-row {
    justify-content: space-between;
    margin-bottom: 10px;
}

.category-chip {
    padding: 5px 9px;
    color: var(--accent);
    background: rgba(251, 191, 36, 0.1);
    font-size: 12px;
}

.rating-chip {
    padding: 5px 8px;
    color: #fde68a;
    background: rgba(251, 191, 36, 0.08);
    font-size: 12px;
}

.movie-card h3 {
    margin: 0 0 10px;
    min-height: 48px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.movie-card:hover h3 {
    color: var(--accent);
}

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

.movie-info-line {
    gap: 8px;
    color: var(--soft);
    font-size: 13px;
}

.movie-info-line span:not(:last-child)::after {
    content: "•";
    margin-left: 8px;
    color: rgba(148, 163, 184, 0.6);
}

.tag-line {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 24px;
    margin-top: 12px;
}

.tag-line span {
    padding: 4px 8px;
    color: var(--soft);
    border: 1px solid rgba(148, 163, 184, 0.14);
    font-size: 12px;
}

.movie-card-wide .movie-card-link {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 180px;
}

.movie-card-wide .movie-poster {
    height: 100%;
    aspect-ratio: auto;
}

.movie-card-wide h3 {
    min-height: auto;
    font-size: 21px;
}

.movie-card-wide p {
    min-height: auto;
    -webkit-line-clamp: 3;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 20% 0%, rgba(251, 191, 36, 0.17), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.96));
}

.page-hero > div {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.page-hero h1 {
    max-width: 880px;
    font-size: clamp(40px, 5vw, 68px);
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 820px;
    font-size: 18px;
}

.small-hero {
    min-height: 320px;
    display: flex;
    align-items: center;
}

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

.category-card {
    min-height: 280px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.68)),
        radial-gradient(circle at 90% 10%, rgba(251, 191, 36, 0.16), transparent 16rem);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.5);
}

.category-card a {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: 28px;
}

.category-card h2 {
    font-size: 30px;
}

.category-samples {
    display: grid;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
}

.category-samples a {
    display: block;
    height: auto;
    padding: 0;
    color: var(--muted);
    font-size: 14px;
}

.category-samples a:hover {
    color: var(--accent);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(140px, 180px));
    gap: 12px;
    margin-bottom: 28px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.72);
}

.filter-panel input,
.filter-panel select {
    min-height: 44px;
    border-radius: 999px;
    padding: 0 14px;
}

.filter-panel select {
    cursor: pointer;
}

.no-results {
    display: none;
    margin: 26px 0;
    padding: 22px;
    border: 1px solid rgba(251, 191, 36, 0.26);
    border-radius: 18px;
    color: var(--accent);
    background: rgba(251, 191, 36, 0.08);
    text-align: center;
    font-weight: 800;
}

.no-results.show {
    display: block;
}

.detail-backdrop {
    position: relative;
    height: 52vh;
    min-height: 430px;
    background-position: center;
    background-size: cover;
}

.detail-backdrop-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.72) 42%, rgba(2, 6, 23, 0.34) 100%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.16));
}

.detail-layout {
    width: min(1280px, calc(100% - 32px));
    margin: -260px auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(248, 250, 252, 0.12);
    border-radius: var(--radius-lg);
    background: #000;
    box-shadow: var(--shadow-xl);
}

.video-player {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    cursor: pointer;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: var(--text);
    background-position: center;
    background-size: cover;
    cursor: pointer;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.player-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(251, 191, 36, 0.18), transparent 18rem),
        rgba(2, 6, 23, 0.58);
}

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

.play-circle,
.play-text {
    position: relative;
    z-index: 2;
}

.play-circle {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #111827;
    background: linear-gradient(135deg, var(--accent), #fde68a);
    box-shadow: 0 20px 48px rgba(251, 191, 36, 0.32);
    font-size: 34px;
    padding-left: 5px;
}

.play-text {
    font-size: 18px;
    font-weight: 900;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.58);
}

.detail-card,
.side-card {
    margin-top: 28px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.86);
    box-shadow: var(--shadow-md);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--soft);
    font-size: 14px;
}

.breadcrumb a:hover,
.side-card a:hover {
    color: var(--accent);
}

.detail-card h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-meta {
    gap: 12px;
    margin-bottom: 28px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted);
    background: rgba(148, 163, 184, 0.08);
}

.detail-meta span:first-child {
    color: #fde68a;
    background: rgba(251, 191, 36, 0.1);
    font-weight: 900;
}

.detail-card section {
    margin-top: 28px;
}

.detail-card h2,
.side-card h2 {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 24px;
}

.detail-card p {
    margin: 0 0 14px;
    color: #dbeafe;
    font-size: 17px;
    line-height: 1.88;
}

.lead-text {
    color: #f8fafc !important;
    font-weight: 800;
}

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

.tag-cloud span {
    padding: 8px 12px;
    color: var(--muted);
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.58);
}

.detail-side {
    align-self: start;
    position: sticky;
    top: 92px;
}

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

.side-card dt {
    color: var(--soft);
    font-size: 13px;
}

.side-card dd {
    margin: -10px 0 0;
    color: var(--text);
    font-weight: 800;
    line-height: 1.5;
}

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

.site-footer {
    margin-top: 68px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.82);
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-inner strong {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 22px;
}

.footer-inner p,
.copyright {
    margin: 0;
    color: var(--soft);
    line-height: 1.65;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    color: var(--muted);
    font-weight: 800;
}

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

.copyright {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 28px;
    font-size: 14px;
}

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

    .nav-toggle {
        display: block;
    }

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

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

    .detail-side {
        position: static;
    }
}

@media (max-width: 900px) {
    .hero-carousel {
        min-height: 620px;
    }

    .hero-copy {
        left: 18px;
        bottom: 86px;
        width: calc(100% - 36px);
    }

    .hero-arrow {
        display: none;
    }

    .home-search-band,
    .section-heading,
    .footer-inner {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }

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

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

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

@media (max-width: 640px) {
    .header-inner {
        width: min(100% - 24px, 1280px);
    }

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

    .hero-carousel {
        height: 78vh;
        min-height: 620px;
    }

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

    .hero-actions {
        gap: 8px;
    }

    .primary-btn,
    .ghost-btn {
        min-height: 42px;
        padding: 0 14px;
        font-size: 14px;
    }

    .content-section {
        width: min(100% - 24px, 1280px);
        padding: 38px 0;
    }

    .home-search-band {
        margin-top: -30px;
        padding: 22px;
    }

    .big-search {
        flex-direction: column;
        border-radius: 22px;
    }

    .big-search input {
        min-height: 44px;
    }

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

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

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

    .movie-card-wide .movie-poster {
        aspect-ratio: 16 / 9;
    }

    .page-hero {
        padding: 62px 0;
    }

    .detail-layout {
        width: min(100% - 24px, 1280px);
        margin-top: -210px;
    }

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

    .play-circle {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }
}
