:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-strong: rgba(15, 23, 42, 0.94);
    --border: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --shadow: 0 24px 70px rgba(2, 6, 23, 0.55);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 10%, rgba(34, 211, 238, 0.12), transparent 26rem),
        radial-gradient(circle at 90% 0%, rgba(59, 130, 246, 0.16), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0));
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.45);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 14px 30px rgba(34, 211, 238, 0.22);
}

.brand-name,
.footer-brand {
    font-size: 22px;
    color: transparent;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #cbd5e1;
    font-weight: 700;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a,
.section-heading a,
.compact-heading a,
.breadcrumb a {
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover,
.section-heading a:hover,
.compact-heading a:hover,
.breadcrumb a:hover {
    color: var(--cyan);
}

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

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: currentColor;
}

.mobile-nav {
    display: none;
}

.spotlight {
    position: relative;
    min-height: 740px;
    overflow: hidden;
    isolation: isolate;
}

.spotlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 150px;
    z-index: 5;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0), rgba(2, 6, 23, 1));
    pointer-events: none;
}

.spotlight-track {
    position: absolute;
    inset: 0;
}

.spotlight-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

.spotlight-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.spotlight-backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.spotlight-backdrop img {
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) brightness(0.7);
    transform: scale(1.04);
}

.spotlight-backdrop::before,
.spotlight-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
}

.spotlight-backdrop::before {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 38%, rgba(2, 6, 23, 0.28) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.5), rgba(2, 6, 23, 0.92));
}

.spotlight-backdrop::after {
    background: radial-gradient(circle at 18% 36%, rgba(34, 211, 238, 0.2), transparent 26rem);
}

.spotlight-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 740px;
    margin: 0 auto;
    padding: 120px 0 120px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 420px;
    gap: 54px;
    align-items: center;
}

.spotlight-copy h1,
.spotlight-copy h2,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.spotlight-copy h1,
.spotlight-copy h2 {
    max-width: 780px;
    font-size: clamp(38px, 6vw, 72px);
}

.spotlight-copy h2 + .spotlight-text,
.spotlight-copy h1 + h2 {
    margin-top: 16px;
}

.spotlight-copy h1 + h2 {
    font-size: clamp(24px, 3vw, 38px);
    color: var(--cyan);
    letter-spacing: -0.02em;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.spotlight-text {
    max-width: 700px;
    margin: 22px 0 0;
    color: #cbd5e1;
    font-size: 18px;
}

.spotlight-tags,
.detail-tags,
.filter-chips,
.page-actions,
.spotlight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.spotlight-tags {
    margin-top: 28px;
}

.spotlight-tags span,
.detail-tags span,
.filter-chip,
.detail-stats span,
.detail-stats a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 999px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.54);
    backdrop-filter: blur(14px);
}

.spotlight-actions,
.page-actions {
    margin-top: 34px;
}

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 16px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 36px rgba(34, 211, 238, 0.22);
}

.ghost-btn {
    border: 1px solid var(--border);
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(16px);
}

.primary-btn:hover,
.ghost-btn:hover,
.movie-card:hover,
.category-tile:hover,
.category-card-large:hover,
.rank-row:hover {
    transform: translateY(-3px);
}

.ghost-btn:hover {
    border-color: rgba(34, 211, 238, 0.42);
}

.spotlight-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    box-shadow: var(--shadow);
    aspect-ratio: 3 / 4;
    background: #0f172a;
}

.spotlight-poster img {
    height: 100%;
    object-fit: cover;
}

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

.spotlight-poster span {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    padding: 14px 18px;
    border-radius: 18px;
    color: #ffffff;
    font-weight: 900;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(14px);
}

.spotlight-controls {
    position: absolute;
    left: 50%;
    bottom: 54px;
    z-index: 10;
    width: min(1180px, calc(100% - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateX(-50%);
}

.spotlight-arrow,
.spotlight-dot {
    border: 0;
    cursor: pointer;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(12px);
}

.spotlight-arrow {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 28px;
}

.spotlight-dots {
    display: flex;
    gap: 10px;
}

.spotlight-dot {
    width: 32px;
    height: 8px;
    border-radius: 999px;
    opacity: 0.45;
}

.spotlight-dot.is-active {
    width: 54px;
    opacity: 1;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

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

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

.section-heading h2,
.search-panel h2,
.side-picks h2,
.detail-block h2 {
    margin: 0;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.12;
}

.section-heading a,
.compact-heading a {
    color: var(--cyan);
    font-weight: 900;
}

.search-panel,
.list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.62);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-box {
    flex: 1;
    min-width: 260px;
    max-width: 520px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 18px;
    color: var(--muted);
    background: rgba(2, 6, 23, 0.42);
}

.search-box input {
    width: 100%;
    border: 0;
    outline: none;
    color: #ffffff;
    background: transparent;
}

.search-box input::placeholder {
    color: #64748b;
}

.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;
}

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.64);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.28);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    border-color: rgba(34, 211, 238, 0.38);
    box-shadow: 0 26px 58px rgba(2, 6, 23, 0.42);
}

.movie-card.is-hidden,
.rank-row.is-hidden {
    display: none;
}

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

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #111827);
}

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

.movie-card:hover .poster-wrap img,
.category-tile:hover img,
.category-card-large:hover img {
    transform: scale(1.06);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0), rgba(2, 6, 23, 0.82));
    opacity: 0.78;
}

.year-badge,
.type-badge,
.rank-mark {
    position: absolute;
    z-index: 2;
    top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    background: rgba(15, 23, 42, 0.76);
    backdrop-filter: blur(12px);
}

.year-badge {
    left: 12px;
}

.type-badge {
    right: 12px;
}

.rank-mark {
    top: auto;
    left: 12px;
    bottom: 12px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.play-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.movie-card:hover .play-dot {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.movie-card-body {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 15px;
}

.movie-card-body strong {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
}

.card-line,
.card-meta,
.tag-row {
    color: var(--muted);
    font-size: 13px;
}

.card-line {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-meta span {
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.12);
}

.tag-row {
    color: var(--cyan);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.compact-heading {
    align-items: center;
}

.rank-list {
    display: grid;
    gap: 12px;
}

.rank-row {
    display: grid;
    grid-template-columns: 48px 66px minmax(0, 1fr) 58px;
    align-items: center;
    gap: 14px;
    min-height: 88px;
    padding: 10px 14px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.62);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
    border-color: rgba(34, 211, 238, 0.42);
    background: rgba(15, 23, 42, 0.88);
}

.rank-num {
    color: var(--cyan);
    font-size: 22px;
    font-weight: 950;
}

.rank-row img {
    width: 66px;
    height: 66px;
    border-radius: 16px;
    object-fit: cover;
    background: #0f172a;
}

.rank-info {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.rank-info strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info span,
.rank-score {
    color: var(--muted);
    font-size: 13px;
}

.rank-score {
    justify-self: end;
    color: #ffffff;
    font-weight: 900;
}

.category-mosaic,
.category-large-grid {
    display: grid;
    gap: 16px;
}

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

.category-tile,
.category-card-large {
    position: relative;
    overflow: hidden;
    min-height: 156px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: #0f172a;
    box-shadow: 0 16px 36px rgba(2, 6, 23, 0.24);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover,
.category-card-large:hover {
    border-color: rgba(34, 211, 238, 0.42);
}

.category-tile img,
.category-card-large img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    transition: transform 0.42s ease;
}

.tile-shade,
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.9));
}

.tile-content,
.category-card-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: grid;
    gap: 7px;
}

.tile-content strong,
.category-card-content strong {
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
}

.tile-content em,
.category-card-content em,
.category-card-content span {
    color: #cbd5e1;
    font-size: 13px;
    font-style: normal;
}

.page-main {
    padding-top: 110px;
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 40px;
    padding: 46px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.18), transparent 24rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(30, 41, 59, 0.38));
    box-shadow: var(--shadow);
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 60px);
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: #cbd5e1;
    font-size: 17px;
}

.small-hero {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.category-card-large {
    min-height: 260px;
}

.list-toolbar {
    align-items: flex-start;
}

.filter-chip {
    border: 1px solid rgba(148, 163, 184, 0.2);
    cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
    border-color: rgba(34, 211, 238, 0.52);
    color: #ffffff;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.24), rgba(59, 130, 246, 0.22));
}

.ranking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
}

.wide-rank .rank-row {
    grid-template-columns: 56px 84px minmax(0, 1fr) 70px;
    min-height: 108px;
}

.wide-rank .rank-row img {
    width: 84px;
    height: 84px;
}

.side-picks {
    position: sticky;
    top: 96px;
    align-self: start;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.62);
    box-shadow: var(--shadow);
}

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

.breadcrumb {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb strong {
    color: #ffffff;
}

.detail-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 34px;
    background:
        radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.15), transparent 24rem),
        rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    aspect-ratio: 3 / 4;
    background: #0f172a;
}

.detail-poster img {
    height: 100%;
    object-fit: cover;
}

.detail-copy h1 {
    font-size: clamp(34px, 5vw, 62px);
}

.detail-one-line {
    max-width: 800px;
    margin: 20px 0 0;
    color: #cbd5e1;
    font-size: 18px;
}

.detail-tags,
.detail-stats {
    margin-top: 24px;
}

.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 32px;
    background: #000000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
    cursor: pointer;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 0;
    padding: 0;
    color: #ffffff;
    background: #000000;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover-bg,
.player-cover-shade {
    position: absolute;
    inset: 0;
}

.player-cover-bg {
    background-position: center;
    background-size: cover;
    filter: brightness(0.64) saturate(1.08);
}

.player-cover-shade {
    background:
        radial-gradient(circle at center, rgba(34, 211, 238, 0.18), transparent 24rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
}

.player-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 34px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.88), rgba(59, 130, 246, 0.88));
    box-shadow: 0 18px 38px rgba(34, 211, 238, 0.26);
    transform: translate(-50%, -50%);
}

.detail-content-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.detail-block {
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.62);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.24);
}

.detail-block p {
    margin: 16px 0 0;
    color: #cbd5e1;
    font-size: 16px;
}

.related-section {
    margin-bottom: 88px;
}

.site-footer {
    margin-top: 80px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(2, 6, 23, 0.58);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.5fr;
    gap: 30px;
}

.footer-inner p {
    max-width: 430px;
    margin: 14px 0 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 22px;
    color: #cbd5e1;
    font-weight: 700;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 32px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    color: #64748b;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 16px;
        font-size: 14px;
    }

    .spotlight-inner {
        grid-template-columns: minmax(0, 1fr) 340px;
    }

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

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

    .ranking-layout,
    .split-section,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .side-picks {
        position: static;
    }
}

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

    .mobile-toggle {
        display: block;
    }

    .mobile-nav.is-open {
        display: grid;
        gap: 8px;
        width: min(100%, 420px);
        margin-left: auto;
        padding: 14px 18px 22px;
        border-top: 1px solid rgba(148, 163, 184, 0.14);
        background: rgba(15, 23, 42, 0.98);
    }

    .mobile-nav a {
        padding: 12px 14px;
        border-radius: 14px;
        color: #cbd5e1;
        background: rgba(148, 163, 184, 0.07);
    }

    .spotlight,
    .spotlight-inner {
        min-height: 820px;
    }

    .spotlight-inner {
        padding-top: 106px;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 32px;
    }

    .spotlight-poster {
        max-width: 300px;
    }

    .search-panel,
    .list-toolbar,
    .section-heading,
    .footer-inner,
    .detail-hero {
        display: grid;
        grid-template-columns: 1fr;
    }

    .search-box {
        max-width: none;
    }

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

    .detail-hero {
        gap: 24px;
        padding: 22px;
    }

    .detail-poster {
        width: min(100%, 270px);
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .header-inner {
        height: 68px;
    }

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

    .spotlight,
    .spotlight-inner {
        min-height: 760px;
    }

    .spotlight-copy h1,
    .spotlight-copy h2 {
        font-size: 34px;
    }

    .spotlight-text,
    .detail-one-line {
        font-size: 16px;
    }

    .spotlight-poster {
        display: none;
    }

    .spotlight-controls {
        bottom: 28px;
    }

    .spotlight-arrow {
        width: 40px;
        height: 40px;
    }

    .section-wrap,
    .page-hero,
    .detail-hero,
    .player-section,
    .detail-content-grid,
    .breadcrumb {
        width: min(100% - 24px, 1180px);
    }

    .page-hero {
        padding: 28px;
        border-radius: 26px;
    }

    .movie-grid,
    .compact-grid,
    .category-mosaic,
    .category-large-grid,
    .side-grid {
        grid-template-columns: 1fr;
    }

    .rank-row,
    .wide-rank .rank-row {
        grid-template-columns: 42px 58px minmax(0, 1fr);
    }

    .rank-score {
        grid-column: 3;
        justify-self: start;
    }

    .rank-row img,
    .wide-rank .rank-row img {
        width: 58px;
        height: 58px;
    }

    .player-play-button {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}