:root {
    --orange: #f97316;
    --orange-dark: #ea580c;
    --cyan: #06b6d4;
    --cyan-dark: #0891b2;
    --text: #1f2937;
    --muted: #6b7280;
    --soft: #fff7ed;
    --panel: #ffffff;
    --line: #e5e7eb;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.10);
    font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 48%, #ecfeff 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.logo-text,
.footer-logo {
    font-size: 28px;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-mark,
.footer-logo span {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
}

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

.desktop-nav a {
    color: #374151;
    font-weight: 700;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--orange);
}

.nav-search,
.mobile-search,
.spotlight-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search input,
.mobile-search input,
.spotlight-search input,
.filter-search-line input {
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 11px 16px;
    outline: none;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus,
.mobile-search input:focus,
.spotlight-search input:focus,
.filter-search-line input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.nav-search button,
.mobile-search button,
.spotlight-search button,
.filter-search-line button,
.primary-btn {
    border: 0;
    color: #ffffff;
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 800;
    cursor: pointer;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-search button:hover,
.mobile-search button:hover,
.spotlight-search button:hover,
.filter-search-line button:hover,
.primary-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 32px rgba(249, 115, 22, 0.32);
}

.menu-toggle {
    display: none;
    border: 0;
    background: #f3f4f6;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--line);
    padding: 16px 24px 24px;
    background: #ffffff;
}

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

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

.mobile-panel a {
    padding: 11px 12px;
    border-radius: 12px;
    background: #fff7ed;
    color: #374151;
    font-weight: 700;
}

main {
    min-height: 70vh;
}

.hero {
    position: relative;
    height: 640px;
    overflow: hidden;
    background: #111827;
}

.hero h1 {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 34px;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 40px));
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.hero-stage,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.9s ease, transform 1.2s ease;
    transform: scale(1.02);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.08));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 120px 24px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    margin-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
}

.hero-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    font-weight: 800;
}

.hero-content h2 {
    margin: 20px 0 16px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero-content p {
    color: #e5e7eb;
    font-size: 18px;
    line-height: 1.85;
    margin: 0;
}

.hero-stats,
.hero-actions,
.movie-meta-line,
.detail-meta,
.filter-selects {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.hero-stats {
    margin-top: 22px;
    color: #ffffff;
    font-weight: 800;
}

.hero-stats span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
}

.hero-actions {
    margin-top: 28px;
}

.ghost-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

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

.hero-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 36px;
    background: var(--orange);
}

.content-section,
.detail-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px 0;
}

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

.section-heading h2,
.page-hero h1,
.detail-card h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading h2 {
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.section-heading a {
    color: var(--orange);
    font-weight: 900;
    white-space: nowrap;
}

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

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

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

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fed7aa, #a5f3fc);
}

.movie-card-compact .poster-frame {
    aspect-ratio: 16 / 10;
}

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

.movie-card-link:hover img,
.related-item:hover img,
.wide-list-item:hover img {
    transform: scale(1.08);
}

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
    transition: opacity 0.25s ease;
}

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

.poster-badge,
.rank-badge {
    position: absolute;
    z-index: 3;
    top: 12px;
    right: 12px;
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    background: var(--orange);
}

.rank-badge {
    right: auto;
    left: 12px;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
}

.poster-play {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--orange);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.25s ease;
    box-shadow: 0 18px 36px rgba(249, 115, 22, 0.35);
}

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

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

.movie-card-body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

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

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

.movie-meta-line {
    gap: 7px;
    color: #6b7280;
    font-size: 13px;
}

.movie-meta-line span:not(:last-child)::after {
    content: "·";
    margin-left: 7px;
    color: #c4c4c4;
}

.movie-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.movie-tags span,
.detail-tags span {
    border-radius: 999px;
    color: #c2410c;
    background: #ffedd5;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 800;
}

.rail-wrap {
    position: relative;
}

.movie-rail {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2px 4px 20px;
    scrollbar-width: none;
}

.movie-rail::-webkit-scrollbar {
    display: none;
}

.movie-rail .movie-card {
    flex: 0 0 320px;
}

.rail-arrow {
    position: absolute;
    top: 42%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    color: #111827;
    font-size: 30px;
    transition: background 0.2s ease, color 0.2s ease;
}

.rail-arrow:hover {
    background: var(--orange);
    color: #ffffff;
}

.rail-left {
    left: -12px;
}

.rail-right {
    right: -12px;
}

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

.category-tile,
.category-overview-card {
    border-radius: 26px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.85);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.category-tile span,
.category-overview-head > span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
    font-size: 22px;
    font-weight: 900;
}

.category-tile h3,
.category-overview-head h2 {
    margin: 18px 0 10px;
    font-size: 22px;
}

.category-tile p,
.category-overview-head p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 16px;
}

.category-tile strong,
.category-overview-head strong {
    color: var(--orange);
    font-size: 18px;
}

.stats-band {
    margin: 64px 0 10px;
    padding: 54px 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #1f2937, #111827);
}

.stats-band div {
    text-align: center;
}

.stats-band strong {
    display: block;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1;
}

.stats-band span {
    display: block;
    margin-top: 10px;
    color: #d1d5db;
    font-weight: 800;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.8fr);
    gap: 26px;
}

.wide-list {
    display: grid;
    gap: 14px;
}

.wide-list-item {
    display: grid;
    grid-template-columns: 52px 150px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    border-radius: 18px;
    padding: 14px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wide-list-item:hover {
    background: linear-gradient(90deg, #fff7ed, #ecfeff);
    transform: translateX(4px);
    box-shadow: var(--shadow-soft);
}

.list-rank {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
    font-weight: 900;
}

.wide-thumb {
    height: 86px;
    overflow: hidden;
    border-radius: 14px;
    background: #fed7aa;
}

.wide-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wide-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.wide-info p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wide-extra {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    text-align: right;
}

.wide-extra strong {
    color: var(--orange);
    font-size: 22px;
}

.spotlight-box,
.filter-panel,
.detail-card,
.side-card,
.ranking-side {
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.spotlight-box {
    padding: 32px;
    background: linear-gradient(135deg, #f97316, #06b6d4);
    color: #ffffff;
    align-self: start;
    position: sticky;
    top: 98px;
}

.spotlight-box h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.spotlight-box p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.spotlight-search {
    margin-top: 22px;
    flex-direction: column;
    align-items: stretch;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 24px 72px;
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.88), transparent 35%), linear-gradient(135deg, #111827, #164e63);
}

.page-hero > div {
    max-width: 1280px;
    margin: 0 auto;
}

.page-hero span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 900;
}

.page-hero h1 {
    margin-top: 16px;
}

.page-hero p {
    max-width: 780px;
    color: #d1d5db;
    line-height: 1.8;
    font-size: 18px;
}

.category-overview-link {
    display: block;
}

.category-overview-head {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    align-items: start;
    gap: 16px;
}

.category-overview-head h2 {
    margin: 0 0 8px;
}

.mini-poster-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
}

.mini-poster-row img {
    aspect-ratio: 3 / 4;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    background: #fed7aa;
}

.filter-panel {
    padding: 20px;
    margin-bottom: 28px;
}

.filter-search-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.filter-search-line input {
    width: 100%;
}

.filter-selects {
    margin-top: 14px;
}

.filter-selects select {
    min-width: 160px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 10px 14px;
    outline: none;
    background: #ffffff;
}

.filter-count {
    margin: 14px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.filter-count strong {
    color: var(--orange);
}

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

.ranking-main {
    display: grid;
    gap: 14px;
}

.ranking-side {
    padding: 24px;
    align-self: start;
    position: sticky;
    top: 96px;
}

.ranking-side h2 {
    margin-top: 0;
}

.ranking-side a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
}

.ranking-side span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
}

.detail-wrap {
    padding-top: 30px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    margin-bottom: 22px;
    font-weight: 700;
}

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

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

.detail-main {
    min-width: 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.player-shell video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.30));
    cursor: pointer;
}

.play-overlay span {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--orange);
    font-size: 34px;
    box-shadow: 0 18px 42px rgba(249, 115, 22, 0.4);
    transition: transform 0.2s ease;
}

.play-overlay:hover span {
    transform: scale(1.08);
}

.player-shell.is-playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.detail-card {
    margin-top: 24px;
    padding: 30px;
}

.detail-card h1 {
    color: #111827;
}

.detail-one-line {
    margin: 16px 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
}

.detail-meta span,
.detail-meta strong {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    font-weight: 800;
}

.detail-meta strong {
    color: var(--orange);
    background: #fff7ed;
}

.detail-card h2 {
    margin: 30px 0 12px;
    font-size: 24px;
}

.detail-card p {
    color: #374151;
    line-height: 1.95;
}

.detail-side {
    display: grid;
    gap: 20px;
    align-content: start;
}

.side-card {
    padding: 22px;
}

.poster-side img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    background: #fed7aa;
    margin-bottom: 18px;
}

.full-btn {
    display: block;
    text-align: center;
}

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

.related-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 14px;
    transition: background 0.2s ease;
}

.related-item:hover {
    background: linear-gradient(90deg, #fff7ed, #ecfeff);
}

.related-item img {
    width: 92px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.related-item strong,
.related-item em {
    display: block;
}

.related-item strong {
    font-size: 14px;
    line-height: 1.4;
}

.related-item em {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.related-section {
    padding-left: 0;
    padding-right: 0;
}

.sitemap-list {
    columns: 4 230px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    break-inside: avoid;
    margin: 0 0 10px;
}

.sitemap-list a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    font-weight: 800;
}

.sitemap-list span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.site-footer {
    margin-top: 76px;
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937, #111827);
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 24px;
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 34px;
}

.footer-grid p {
    color: #9ca3af;
    line-height: 1.8;
}

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

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-grid a:hover {
    color: var(--orange);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9ca3af;
}

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

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

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

    .spotlight-box,
    .ranking-side {
        position: static;
    }
}

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .nav-wrap {
        height: 66px;
        padding: 0 16px;
    }

    .logo-text {
        font-size: 22px;
    }

    .hero {
        height: 620px;
    }

    .hero-content {
        margin-left: 0;
        padding: 110px 18px 82px;
        max-width: none;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.85));
    }

    .content-section,
    .detail-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .category-grid,
    .category-overview-grid,
    .stats-band,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .wide-list-item {
        grid-template-columns: 40px 104px minmax(0, 1fr);
    }

    .wide-extra {
        display: none;
    }

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

    .filter-selects select {
        width: 100%;
    }

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

@media (max-width: 520px) {
    .movie-grid,
    .dense-grid,
    .featured-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .movie-card-body h3 {
        font-size: 15px;
    }

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

    .movie-rail .movie-card {
        flex-basis: 250px;
    }

    .wide-list-item {
        grid-template-columns: 34px 86px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .wide-thumb {
        height: 62px;
    }

    .wide-info h3 {
        font-size: 15px;
    }

    .wide-info p {
        -webkit-line-clamp: 1;
        font-size: 12px;
    }

    .page-hero {
        padding: 52px 16px;
    }
}
