:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.82);
    --bg-card-solid: #111827;
    --line: rgba(148, 163, 184, 0.2);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-2: #cbd5e1;
    --amber: #f59e0b;
    --orange: #f97316;
    --rose: #f43f5e;
    --blue: #38bdf8;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 30rem),
        radial-gradient(circle at top right, rgba(244, 63, 94, 0.1), transparent 34rem),
        linear-gradient(135deg, #020617 0%, #0f172a 48%, #020617 100%);
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 6, 23, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #0f172a;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 12px 36px rgba(245, 158, 11, 0.28);
}

.brand-name,
.footer-brand {
    font-size: 22px;
    background: linear-gradient(90deg, #fbbf24, #fb923c);
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

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

.nav-link,
.mobile-link {
    color: var(--muted-2);
    border-radius: 14px;
    transition: 0.2s ease;
}

.nav-link {
    padding: 10px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #ffffff;
    background: rgba(148, 163, 184, 0.14);
}

.top-search,
.mobile-search {
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

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

.top-search button,
.mobile-search button {
    border: 0;
    color: #111827;
    font-weight: 800;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    padding: 11px 14px;
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.8);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
    border-radius: 999px;
}

.mobile-menu {
    display: none;
    padding: 0 16px 18px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.96);
}

.mobile-menu.open {
    display: block;
}

.mobile-link {
    display: block;
    padding: 13px 10px;
}

.mobile-search {
    margin-top: 10px;
}

.mobile-search input {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    border-bottom: 1px solid var(--line);
}

.hero-slider {
    position: relative;
    min-height: 680px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.82) 42%, rgba(2, 6, 23, 0.32) 100%),
        linear-gradient(0deg, #020617 0%, transparent 42%);
    z-index: 1;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.12) contrast(1.02);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 360px;
    gap: 48px;
    align-items: center;
    padding: 104px 0 88px;
}

.hero-text {
    max-width: 760px;
}

.hero-kicker,
.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fde68a;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1,
.hero h2 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.gradient-text {
    background: linear-gradient(90deg, #fbbf24, #fb923c, #fb7185);
    background-clip: text;
    color: transparent;
}

.hero-desc {
    margin: 24px 0 0;
    max-width: 680px;
    color: var(--muted-2);
    font-size: 18px;
    line-height: 1.9;
}

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

.hero-tags span,
.tag-row span,
.info-pill,
.filter-chip {
    border: 1px solid rgba(251, 191, 36, 0.28);
    color: #fde68a;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 999px;
}

.hero-tags span {
    padding: 8px 12px;
    font-weight: 700;
}

.hero-actions,
.panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn,
.btn-secondary,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 16px;
    font-weight: 900;
    transition: 0.22s ease;
}

.btn {
    color: #111827;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    padding: 14px 20px;
    box-shadow: 0 16px 42px rgba(245, 158, 11, 0.24);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.34);
}

.btn-secondary,
.section-more {
    color: var(--text);
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--line);
    padding: 13px 18px;
}

.btn-secondary:hover,
.section-more:hover {
    border-color: rgba(251, 191, 36, 0.55);
    background: rgba(245, 158, 11, 0.14);
}

.hero-poster-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(15, 23, 42, 0.7);
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-4deg);
}

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

.hero-poster-info {
    position: absolute;
    inset: auto 18px 18px 18px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-poster-info strong {
    display: block;
    font-size: 22px;
}

.hero-poster-info span {
    color: var(--muted-2);
    font-size: 14px;
}

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

.hero-dots button {
    width: 42px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.hero-dots button.is-active {
    background: linear-gradient(90deg, var(--amber), var(--orange));
}

.quick-panel {
    position: relative;
    z-index: 3;
    margin-top: -56px;
}

.quick-panel-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.quick-search {
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.24);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.72);
}

.quick-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    padding: 16px 18px;
}

.quick-search button {
    min-width: 120px;
    border: 0;
    color: #111827;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    cursor: pointer;
}

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

.filter-chip {
    padding: 9px 12px;
    font-weight: 800;
}

.page-section {
    padding: 72px 0;
}

.page-section.tight {
    padding-top: 44px;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -0.05em;
}

.section-heading p {
    max-width: 660px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

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

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

.movie-card {
    min-width: 0;
}

.movie-card a {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--bg-card);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card a:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.poster-wrap img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

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

.poster-year,
.poster-score,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.poster-year {
    top: 12px;
    left: 12px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.78);
    padding: 6px 10px;
}

.poster-score {
    top: 12px;
    right: 12px;
    color: #111827;
    background: linear-gradient(135deg, #fde68a, var(--amber));
    padding: 6px 10px;
}

.rank-badge {
    left: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #111827;
    background: linear-gradient(135deg, #fde68a, #fb923c);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.25);
}

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

.card-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.movie-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card p {
    margin: 0;
    color: var(--muted-2);
    line-height: 1.65;
    font-size: 14px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag-row span {
    padding: 4px 8px;
    font-size: 12px;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.8));
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
    transition: 0.22s ease;
}

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

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
}

.category-tile-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    padding: 24px;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.96), transparent 72%);
}

.category-tile h3 {
    margin: 0 0 10px;
    font-size: 26px;
}

.category-tile p {
    margin: 0 0 18px;
    color: var(--muted-2);
    line-height: 1.7;
}

.category-count {
    color: #fde68a;
    font-weight: 900;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 72px 92px 1fr;
    gap: 16px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.72);
    transition: 0.2s ease;
}

.ranking-item:hover {
    border-color: rgba(251, 191, 36, 0.45);
    background: rgba(30, 41, 59, 0.76);
}

.ranking-number {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #111827;
    font-weight: 1000;
    font-size: 22px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.ranking-item img {
    width: 92px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 14px;
}

.ranking-item h3 {
    margin: 0 0 8px;
    font-size: 19px;
}

.ranking-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 54px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 30rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
}

.page-hero h1,
.detail-copy h1 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.page-hero p,
.detail-copy p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted-2);
    font-size: 18px;
    line-height: 1.9;
}

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

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

.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(150px, 0.45fr));
    gap: 12px;
    padding: 16px;
    margin-bottom: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.72);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid var(--line);
    outline: 0;
    color: var(--text);
    background: rgba(2, 6, 23, 0.72);
    border-radius: 14px;
    padding: 12px 14px;
}

.filter-result {
    margin: 0 0 18px;
    color: var(--muted);
}

.empty-state {
    display: none;
    padding: 42px;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: 22px;
    color: var(--muted-2);
}

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

.detail-hero {
    padding: 74px 0 58px;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--poster-url);
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: blur(14px) saturate(1.25);
    transform: scale(1.08);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.68));
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

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

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.info-pill {
    padding: 8px 12px;
    font-weight: 800;
}

.watch-section {
    padding: 52px 0;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--shadow);
}

.player-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-mask {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #ffffff;
    border: 0;
    background:
        radial-gradient(circle at center, rgba(245, 158, 11, 0.22), transparent 18rem),
        linear-gradient(0deg, rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.38));
    cursor: pointer;
}

.player-mask span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #111827;
    font-size: 34px;
    background: linear-gradient(135deg, #fde68a, var(--orange));
    box-shadow: 0 16px 44px rgba(245, 158, 11, 0.3);
}

.player-mask strong {
    font-size: 22px;
}

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

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

.content-panel,
.side-panel {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.content-panel {
    padding: 30px;
}

.content-panel h2,
.side-panel h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

.content-panel p {
    color: var(--muted-2);
    line-height: 2;
    margin: 0 0 24px;
}

.side-panel {
    padding: 22px;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-list div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.info-list dt {
    color: var(--muted);
}

.info-list dd {
    margin: 0;
    text-align: right;
    font-weight: 800;
}

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

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

.alpha-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.72);
    transition: 0.2s ease;
}

.alpha-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.45);
}

.alpha-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.alpha-card span {
    color: var(--muted);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 34px;
    padding: 46px 0 30px;
}

.footer-grid p {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-grid h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

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

.footer-links a {
    color: var(--muted-2);
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.footer-links a:hover {
    color: #fde68a;
    border-color: rgba(251, 191, 36, 0.45);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 0;
    color: var(--muted);
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

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

    .hero-content {
        grid-template-columns: 1fr 300px;
    }

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

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

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

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

    .mobile-toggle {
        display: block;
        margin-left: auto;
    }

    .hero,
    .hero-slider,
    .hero-slide {
        min-height: 760px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 92px;
    }

    .hero-poster-card {
        width: min(300px, 76vw);
        transform: none;
    }

    .quick-panel {
        margin-top: 24px;
    }

    .quick-panel-inner,
    .footer-grid,
    .detail-hero-inner,
    .filter-bar {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: block;
    }

    .section-more {
        margin-top: 18px;
    }

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

    .detail-poster {
        width: min(240px, 72vw);
    }

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 22px, 1200px);
    }

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

    .hero,
    .hero-slider,
    .hero-slide {
        min-height: 830px;
    }

    .hero-desc,
    .page-hero p,
    .detail-copy p {
        font-size: 16px;
    }

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

    .btn,
    .btn-secondary,
    .section-more {
        width: 100%;
    }

    .quick-search {
        flex-direction: column;
    }

    .quick-search button {
        width: 100%;
        min-height: 48px;
    }

    .movie-grid,
    .movie-grid.compact,
    .category-grid,
    .ranking-list,
    .related-grid,
    .alpha-list {
        grid-template-columns: 1fr;
    }

    .ranking-item {
        grid-template-columns: 54px 78px 1fr;
        gap: 12px;
    }

    .ranking-item img {
        width: 78px;
    }

    .content-panel {
        padding: 22px;
    }
}
