:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-accent: #f97316;
    --color-green: #16a34a;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.10);
    --shadow-strong: 0 22px 55px rgba(15, 23, 42, 0.22);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-slate-800);
    background: var(--color-slate-50);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

img.is-missing {
    opacity: 0;
}

button,
input,
select {
    font: inherit;
}

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

.site-header.is-scrolled,
.site-header.inner-header {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.nav-shell {
    width: min(var(--max-width), calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #ffffff;
    background: var(--color-primary);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.30);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong,
.footer-brand strong {
    color: #ffffff;
    font-size: 21px;
    letter-spacing: -0.02em;
}

.brand-text small,
.footer-brand small {
    color: #cbd5e1;
    font-size: 12px;
    margin-top: 3px;
}

.site-header.is-scrolled .brand-text strong,
.site-header.inner-header .brand-text strong {
    color: var(--color-slate-900);
}

.site-header.is-scrolled .brand-text small,
.site-header.inner-header .brand-text small {
    color: var(--color-slate-500);
}

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

.nav-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #60a5fa;
}

.site-header.is-scrolled .nav-link,
.site-header.inner-header .nav-link {
    color: var(--color-slate-700);
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active,
.site-header.inner-header .nav-link:hover,
.site-header.inner-header .nav-link.is-active {
    color: var(--color-primary);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 999px;
}

.site-header.is-scrolled .mobile-menu-button,
.site-header.inner-header .mobile-menu-button {
    background: var(--color-slate-100);
}

.site-header.is-scrolled .mobile-menu-button span,
.site-header.inner-header .mobile-menu-button span {
    background: var(--color-slate-700);
}

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

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

.mobile-link {
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--color-slate-700);
    font-weight: 600;
}

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

.hero-carousel {
    position: relative;
    min-height: 650px;
    height: 76vh;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.55), transparent 32%), linear-gradient(135deg, #020617, #0f172a 42%, #1e3a8a);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.65s ease, transform 0.65s ease;
    transform: scale(1.02);
}

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

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.58) 45%, rgba(15, 23, 42, 0.20)), linear-gradient(0deg, rgba(2, 6, 23, 0.78), transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--max-width), calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding-top: 76px;
}

.hero-panel {
    max-width: 680px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.34);
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.26);
    backdrop-filter: blur(12px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #fde68a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.hero-panel h1,
.hero-panel h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.hero-panel p {
    max-width: 620px;
    margin: 0 0 22px;
    color: #e2e8f0;
    font-size: clamp(16px, 2vw, 20px);
}

.hero-badges,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.badge,
.tag-list span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.90);
    font-size: 13px;
    font-weight: 700;
}

.badge.secondary,
.tag-list span:nth-child(even) {
    background: rgba(51, 65, 85, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button,
.button-outline,
.button-muted {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 20px;
    border-radius: 13px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
    color: #ffffff;
    background: var(--color-primary);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.34);
}

.button-outline {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.10);
}

.button-outline:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.button-muted {
    color: var(--color-slate-700);
    background: var(--color-slate-100);
}

.button-muted:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.30);
}

.hero-arrow.prev {
    left: 22px;
}

.hero-arrow.next {
    right: 22px;
}

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

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

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

main {
    min-height: 60vh;
}

.section,
.inner-page {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0;
}

.section.alt,
.full-band {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 54px 0;
    background: var(--color-slate-100);
}

.full-band > .section-inner {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
}

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

.section-title {
    margin: 0;
    color: var(--color-slate-900);
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.section-kicker {
    margin: 0 0 4px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 800;
}

.section-desc {
    margin: 8px 0 0;
    color: var(--color-slate-500);
}

.more-link {
    color: var(--color-primary);
    font-weight: 800;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.poster-wrap,
.mini-poster,
.detail-poster {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 26% 20%, rgba(37, 99, 235, 0.45), transparent 36%), linear-gradient(145deg, #0f172a, #334155);
}

.poster-wrap::after,
.mini-poster::after,
.detail-poster::after {
    content: attr(data-fallback);
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.poster-wrap img,
.mini-poster img,
.detail-poster img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.poster-wrap {
    aspect-ratio: 3 / 4;
}

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

.poster-gradient {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    height: 50%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent);
}

.poster-year,
.rank-badge {
    position: absolute;
    z-index: 3;
    border-radius: 999px;
    padding: 5px 9px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(6px);
}

.poster-year {
    right: 10px;
    bottom: 10px;
}

.rank-badge {
    left: 10px;
    top: 10px;
    background: var(--color-accent);
}

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

.movie-card-body h3 {
    display: -webkit-box;
    min-height: 45px;
    margin: 0 0 9px;
    overflow: hidden;
    color: var(--color-slate-900);
    font-size: 16px;
    line-height: 1.38;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.movie-card-body p {
    display: -webkit-box;
    min-height: 42px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--color-slate-600);
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--color-slate-500);
    font-size: 12px;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: var(--radius-md);
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8, #0f172a);
    box-shadow: var(--shadow-soft);
}

.category-tile:nth-child(3n + 2) {
    background: linear-gradient(135deg, #ea580c, #0f172a);
}

.category-tile:nth-child(3n) {
    background: linear-gradient(135deg, #16a34a, #0f172a);
}

.category-tile::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -36px;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.category-tile h3 {
    position: relative;
    margin: 0 0 10px;
    font-size: 22px;
}

.category-tile p {
    position: relative;
    min-height: 52px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.76);
}

.category-tile span {
    position: relative;
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 800;
}

.horizontal-rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 6px 2px 18px;
    scroll-snap-type: x proximity;
}

.horizontal-rail::-webkit-scrollbar {
    height: 8px;
}

.horizontal-rail::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--color-slate-300, #cbd5e1);
}

.rail-card {
    flex: 0 0 190px;
    scroll-snap-align: start;
}

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

.mini-card {
    display: flex;
    overflow: hidden;
    min-height: 152px;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.mini-poster {
    flex: 0 0 112px;
    min-height: 152px;
}

.mini-info {
    display: flex;
    flex-direction: column;
    padding: 14px;
    gap: 6px;
}

.mini-info strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--color-slate-900);
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mini-info span {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
}

.mini-info em {
    display: -webkit-box;
    overflow: hidden;
    color: var(--color-slate-600);
    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 58px 88px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: var(--color-accent);
    font-weight: 900;
}

.rank-thumb {
    position: relative;
    overflow: hidden;
    width: 88px;
    height: 118px;
    border-radius: 13px;
    background: linear-gradient(135deg, #0f172a, #334155);
}

.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-main h3 {
    margin: 0 0 6px;
    color: var(--color-slate-900);
    font-size: 18px;
}

.rank-main p {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--color-slate-600);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-score {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 900;
}

.inner-hero {
    padding: 140px 0 54px;
    color: #ffffff;
    background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.46), transparent 30%), linear-gradient(135deg, #020617, #0f172a 58%, #172554);
}

.inner-hero .section {
    padding: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #cbd5e1;
    font-size: 14px;
}

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

.inner-hero h1 {
    max-width: 900px;
    margin: 0 0 14px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.inner-hero p {
    max-width: 820px;
    margin: 0;
    color: #cbd5e1;
    font-size: 17px;
}

.filter-panel {
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.filter-row {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 14px;
}

.filter-row label {
    display: grid;
    gap: 7px;
    color: var(--color-slate-600);
    font-size: 13px;
    font-weight: 800;
}

.filter-row input,
.filter-row select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--color-slate-200);
    border-radius: 12px;
    padding: 0 12px;
    color: var(--color-slate-800);
    background: var(--color-slate-50);
    outline: none;
}

.filter-row input:focus,
.filter-row select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.filter-status {
    margin-top: 12px;
    color: var(--color-slate-500);
    font-size: 13px;
}

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

.detail-poster {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

.detail-info-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.detail-info-card h2 {
    margin: 0 0 14px;
    color: var(--color-slate-900);
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.15;
}

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

.detail-meta div {
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--color-slate-100);
}

.detail-meta span {
    display: block;
    color: var(--color-slate-500);
    font-size: 12px;
    font-weight: 800;
}

.detail-meta strong {
    color: var(--color-slate-900);
}

.content-card {
    margin-top: 28px;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.content-card h2,
.content-card h3 {
    margin: 0 0 14px;
    color: var(--color-slate-900);
}

.content-card p {
    margin: 0;
    color: var(--color-slate-700);
    white-space: pre-line;
}

.player-section {
    margin-top: 28px;
}

.player-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #020617;
    box-shadow: var(--shadow-strong);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 42%), rgba(2, 6, 23, 0.70);
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-wrap.is-playing .player-overlay {
    opacity: 0;
    visibility: hidden;
}

.player-play {
    width: 76px;
    height: 76px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: var(--color-primary);
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.36);
    cursor: pointer;
    font-size: 28px;
}

.player-status {
    padding: 12px 16px;
    color: #cbd5e1;
    background: #020617;
    font-size: 13px;
}

.article-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    align-items: start;
}

.side-card {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.side-card h3 {
    margin: 0 0 18px;
    color: var(--color-slate-900);
}

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

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

.info-box {
    padding: 24px;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.info-box h2,
.info-box h3 {
    margin-top: 0;
    color: var(--color-slate-900);
}

.info-box p,
.info-box li {
    color: var(--color-slate-600);
}

.site-footer {
    margin-top: 54px;
    color: #cbd5e1;
    background: var(--color-slate-900);
}

.footer-shell {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-brand strong {
    display: block;
}

.site-footer p,
.site-footer li {
    color: #94a3b8;
    font-size: 14px;
}

.site-footer h4 {
    margin: 0 0 16px;
    color: #ffffff;
}

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

.site-footer a:hover {
    color: #60a5fa;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    color: #94a3b8;
    font-size: 13px;
}

.hidden-by-filter {
    display: none !important;
}

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

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

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

    .category-strip,
    .latest-grid,
    .info-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-poster {
        max-width: 360px;
    }

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

@media (max-width: 760px) {
    .nav-shell {
        height: 66px;
    }

    .brand-icon {
        width: 36px;
        height: 36px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .hero-carousel {
        min-height: 610px;
        height: auto;
    }

    .hero-content {
        align-items: flex-end;
        padding: 110px 0 76px;
    }

    .hero-panel {
        padding: 20px;
    }

    .hero-arrow {
        display: none;
    }

    .section,
    .inner-page,
    .full-band {
        padding: 38px 0;
    }

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

    .category-strip,
    .latest-grid,
    .info-page-grid,
    .filter-row,
    .detail-meta {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: block;
    }

    .ranking-row {
        grid-template-columns: 44px 70px 1fr;
    }

    .rank-score {
        grid-column: 3;
        font-size: 18px;
    }

    .rank-thumb {
        width: 70px;
        height: 96px;
    }

    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
    }
}

@media (max-width: 430px) {
    .movie-card-body {
        padding: 12px;
    }

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

    .movie-card-body p {
        font-size: 12px;
    }

    .mini-card {
        min-height: 130px;
    }

    .mini-poster {
        flex-basis: 96px;
        min-height: 130px;
    }
}
