:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --teal: #0d9488;
    --cyan: #0891b2;
    --orange: #f97316;
    --red: #ef4444;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(18px);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.site-logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
    font-size: 14px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link,
.mobile-nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #475569;
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: var(--primary);
    background: #eff6ff;
}

.header-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    width: min(330px, 34vw);
    padding: 4px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
}

.header-search input,
.mobile-search input,
.search-hero-form input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text);
}

.header-search input {
    padding: 8px 12px;
}

.header-search button,
.mobile-search button,
.search-hero-form button {
    border: 0;
    border-radius: 999px;
    padding: 8px 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    font-weight: 700;
    white-space: nowrap;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    border-radius: 14px;
    background: #eff6ff;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--primary);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

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

.mobile-search {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
    background: #f1f5f9;
}

.hero-slider {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #0f172a;
}

.hero-slides,
.hero-slide {
    min-height: 560px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
    align-items: center;
    gap: 58px;
    padding: 72px max(32px, calc((100vw - 1180px) / 2)) 78px;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.015);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-copy {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero-kicker,
.section-kicker,
.detail-kicker {
    margin: 0 0 12px;
    color: #bfdbfe;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.hero-text {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
}

.hero-tags,
.detail-tags,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 22px;
}

.hero-tags span,
.detail-tags a,
.tag-list span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span {
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

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

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

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.32);
}

.button-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
}

.button-dark {
    color: #ffffff;
    background: #111827;
}

.hero-poster {
    position: relative;
    z-index: 2;
    display: block;
    justify-self: end;
    width: min(360px, 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(12px);
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

.hero-dot.is-active {
    width: 30px;
    background: #ffffff;
}

.section {
    padding: 56px 0;
}

.section-tight {
    padding: 28px 0 8px;
}

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

.section-heading h2,
.rank-panel-head h2,
.final-banner h2,
.story-card h2,
.detail-side-card h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.section-kicker {
    color: var(--primary);
    font-size: 13px;
}

.section-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 800;
}

.section-more span {
    font-size: 24px;
    line-height: 1;
}

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

.category-chip {
    min-height: 94px;
    padding: 18px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8, #0d9488);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-chip:hover,
.movie-card:hover,
.horizontal-card:hover,
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.category-chip span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.category-chip strong {
    font-size: 18px;
}

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

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

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

.movie-card,
.horizontal-card,
.story-card,
.detail-side-card,
.rank-panel,
.category-card {
    background: var(--surface);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-soft);
}

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-poster {
    position: relative;
    display: block;
    height: 320px;
    overflow: hidden;
    background: #e2e8f0;
}

.movie-poster::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.75), transparent);
}

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

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

.movie-type {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.88);
    font-size: 12px;
    font-weight: 800;
}

.movie-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    backdrop-filter: blur(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.movie-card-title {
    margin: 0 0 8px;
    color: #111827;
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.movie-card-title a:hover,
.horizontal-content h3 a:hover {
    color: var(--primary);
}

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

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
}

.movie-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #f1f5f9;
}

.tag-list {
    margin-top: 12px;
}

.tag-list span,
.detail-tags a {
    padding: 5px 9px;
    color: #1d4ed8;
    background: #eff6ff;
}

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

.horizontal-card {
    display: grid;
    grid-template-columns: 176px 1fr;
    gap: 18px;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.horizontal-poster {
    height: 142px;
    background: #e2e8f0;
}

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

.horizontal-content {
    padding: 18px 18px 18px 0;
}

.horizontal-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
}

.horizontal-content p {
    display: -webkit-box;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hot-section {
    padding: 44px;
    border-radius: 30px;
    background: linear-gradient(135deg, #fff7ed, #fef2f2);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: start;
}

.split-main {
    display: grid;
    gap: 42px;
}

.category-preview + .category-preview {
    margin-top: 48px;
}

.rank-panel {
    position: sticky;
    top: 96px;
    border-radius: 26px;
    padding: 24px;
    background: linear-gradient(180deg, #111827, #0f172a);
    color: #ffffff;
}

.rank-panel-head p {
    margin: 0 0 8px;
    color: #93c5fd;
    font-weight: 800;
}

.rank-panel-head h2 {
    color: #ffffff;
}

.rank-panel ol {
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.rank-panel li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rank-panel li a {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 48px;
    gap: 10px;
    align-items: center;
    padding: 12px 0;
}

.rank-num {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.28);
    color: #bfdbfe;
    font-weight: 900;
}

.rank-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-score {
    color: #fbbf24;
    font-weight: 900;
    text-align: right;
}

.final-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 42px;
    margin-bottom: 60px;
    border-radius: 30px;
    color: #ffffff;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.final-banner h2,
.final-banner .section-kicker {
    color: #ffffff;
}

.final-banner p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.76);
}

.page-hero {
    padding: 76px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8, #0d9488);
}

.page-hero h1 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(38px, 6vw, 62px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.page-hero p:not(.section-kicker) {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.page-hero-compact {
    padding: 64px 0;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 32px;
    align-items: center;
}

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

.compact-card {
    position: relative;
    min-height: 120px;
    overflow: hidden;
    border-radius: 18px;
    background: #0f172a;
}

.compact-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.compact-card:hover img {
    transform: scale(1.08);
    opacity: 0.9;
}

.compact-card span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    color: #ffffff;
    font-weight: 800;
}

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

.category-card {
    min-height: 230px;
    padding: 24px;
    border-radius: 24px;
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card-label {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 900;
}

.category-card h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.category-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.category-samples span {
    max-width: 100%;
    padding: 5px 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
}

.theme-blue,
.theme-cyan,
.theme-sky {
    background: linear-gradient(135deg, #2563eb, #0891b2);
}

.theme-rose,
.theme-pink {
    background: linear-gradient(135deg, #e11d48, #db2777);
}

.theme-orange,
.theme-amber {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.theme-red,
.theme-brown {
    background: linear-gradient(135deg, #dc2626, #92400e);
}

.theme-violet,
.theme-purple,
.theme-indigo {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.theme-teal,
.theme-green,
.theme-lime {
    background: linear-gradient(135deg, #0d9488, #65a30d);
}

.theme-slate,
.theme-zinc,
.theme-stone,
.theme-navy {
    background: linear-gradient(135deg, #334155, #111827);
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px;
    gap: 14px;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.filter-bar label {
    display: grid;
    gap: 6px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.filter-bar input,
.filter-bar select {
    height: 44px;
    padding: 0 14px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
}

.empty-message,
.search-status {
    padding: 32px;
    border: 1px dashed #cbd5e1;
    border-radius: 22px;
    color: #64748b;
    background: #ffffff;
    text-align: center;
}

.ranking-list {
    display: grid;
    gap: 16px;
}

.page-hero-rank {
    background: linear-gradient(135deg, #f97316, #dc2626);
}

.page-hero-search {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.search-hero-form {
    display: flex;
    gap: 10px;
    width: min(680px, 100%);
    margin-top: 28px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.search-hero-form input {
    min-height: 48px;
    padding: 0 18px;
    color: #ffffff;
}

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

.detail-hero {
    padding: 58px 0 66px;
    color: #ffffff;
    background-size: cover;
    background-position: center;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 34px;
    align-items: center;
}

.player-card {
    padding: 10px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    background: #020617;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #020617;
}

.play-trigger {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.22), rgba(2, 6, 23, 0.28));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-trigger span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.42);
    font-size: 34px;
    transform: translateX(3px);
}

.play-trigger.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

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

.detail-copy h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.detail-one-line {
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
}

.story-card,
.detail-side-card {
    border-radius: 24px;
    padding: 28px;
}

.story-card h2 + p {
    margin-top: 12px;
}

.story-card p {
    color: #334155;
    font-size: 17px;
}

.story-card h2:not(:first-child) {
    margin-top: 28px;
}

.detail-side-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.detail-side-card li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-side-card strong {
    color: #64748b;
}

.detail-side-card span {
    font-weight: 800;
    text-align: right;
}

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
}

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

.footer-logo {
    color: #ffffff;
}

.footer-brand p {
    max-width: 560px;
    color: #94a3b8;
}

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

.footer-columns h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

.footer-columns ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-columns li + li {
    margin-top: 8px;
}

.footer-columns a:hover {
    color: #93c5fd;
}

.footer-bottom {
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    text-align: center;
}

@media (max-width: 1100px) {
    .category-strip,
    .movie-grid-four,
    .category-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-slide,
    .detail-grid,
    .page-hero-grid,
    .split-section,
    .detail-content,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        justify-self: start;
        width: 260px;
    }

    .hero-poster img {
        height: 330px;
    }

    .rank-panel {
        position: static;
    }
}

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

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

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

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 28px;
        padding: 56px 24px 74px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: clamp(36px, 12vw, 52px);
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-arrow {
        display: none;
    }

    .category-strip,
    .movie-grid-three,
    .movie-grid-four,
    .horizontal-grid,
    .category-card-grid,
    .compact-list,
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .hot-section,
    .final-banner {
        padding: 24px;
    }

    .final-banner {
        align-items: start;
        flex-direction: column;
    }

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

    .horizontal-card {
        grid-template-columns: 128px 1fr;
    }

    .horizontal-poster {
        height: 136px;
    }

    .horizontal-content {
        padding: 14px 14px 14px 0;
    }

    .movie-poster {
        height: 280px;
    }
}

@media (max-width: 520px) {
    .container,
    .site-header-inner,
    .mobile-nav,
    .footer-inner {
        width: min(100% - 24px, 1180px);
    }

    .site-logo {
        font-size: 19px;
    }

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

    .hero-actions,
    .search-hero-form {
        flex-direction: column;
    }

    .search-hero-form {
        border-radius: 24px;
    }

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

    .horizontal-poster {
        height: 210px;
    }

    .horizontal-content {
        padding: 0 16px 16px;
    }
}
