* {
    box-sizing: border-box;
}

:root {
    --primary-50: #e0f2fe;
    --primary-100: #bae6fd;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --secondary-50: #f0fdfa;
    --secondary-100: #ccfbf1;
    --secondary-500: #14b8a6;
    --secondary-600: #0d9488;
    --accent-50: #fff7ed;
    --accent-100: #ffedd5;
    --accent-600: #ea580c;
    --neutral-50: #fafaf9;
    --neutral-100: #f5f5f4;
    --neutral-200: #e7e5e4;
    --neutral-300: #d6d3d1;
    --neutral-400: #a8a29e;
    --neutral-500: #78716c;
    --neutral-600: #57534e;
    --neutral-700: #44403c;
    --neutral-800: #292524;
    --neutral-900: #1c1917;
    --shadow-md: 0 12px 30px rgba(28, 25, 23, 0.08);
    --shadow-xl: 0 24px 60px rgba(28, 25, 23, 0.16);
    font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--neutral-900);
    background: linear-gradient(180deg, var(--neutral-50) 0%, #ffffff 45%, #ffffff 100%);
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: relative;
    z-index: 60;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0));
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.is-scrolled,
.navbar.is-open {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(28, 25, 23, 0.10);
}

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

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

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    box-shadow: 0 18px 30px rgba(2, 132, 199, 0.22);
    transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-2deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-copy strong,
.footer-logo strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--neutral-900);
}

.brand-copy small,
.footer-logo small {
    font-size: 12px;
    color: var(--neutral-500);
    margin-top: 4px;
}

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

.nav-link,
.nav-dropdown-button {
    border: 0;
    background: transparent;
    color: var(--neutral-700);
    font-weight: 650;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-dropdown-button:hover {
    color: var(--primary-600);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 36px;
    left: 50%;
    min-width: 180px;
    padding: 10px;
    border: 1px solid var(--neutral-200);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-xl);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--neutral-700);
    font-size: 14px;
}

.nav-dropdown-menu a:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

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

.nav-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
    border: 1px solid var(--neutral-200);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--neutral-800);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
    width: 210px;
    padding: 10px 14px;
}

.nav-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16);
}

.nav-search button,
.mobile-search button,
.btn,
.section-more {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
}

.nav-search button,
.mobile-search button {
    padding: 10px 16px;
    color: #ffffff;
    background: var(--primary-600);
    font-weight: 700;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--neutral-100);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--neutral-700);
}

.mobile-menu {
    display: none;
    padding: 16px 20px 24px;
    border-top: 1px solid var(--neutral-200);
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

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

.mobile-link,
.mobile-category-link {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--neutral-700);
    font-weight: 650;
}

.mobile-link:hover,
.mobile-link.is-active,
.mobile-category-link:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

.mobile-search {
    margin: 12px 0;
}

.mobile-search input {
    width: 100%;
    padding: 11px 14px;
}

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

.hero {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
    background: var(--neutral-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-bg,
.page-hero.category-hero {
    background-size: cover;
    background-position: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    transform: scale(1.03);
    transition: transform 1.2s ease;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.62) 44%, rgba(0, 0, 0, 0.30) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 78vh;
    margin: 0 auto;
    padding: 160px 0 118px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-chip,
.section-kicker,
.movie-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-chip {
    padding: 9px 16px;
    color: #ffffff;
    background: var(--primary-600);
    box-shadow: 0 16px 35px rgba(2, 132, 199, 0.35);
}

.hero h1,
.hero h2 {
    max-width: 860px;
    margin: 22px 0 18px;
    color: #ffffff;
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 720px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    font-weight: 800;
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.btn-primary {
    color: #ffffff;
    background: var(--primary-600);
    box-shadow: 0 18px 40px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
    background: var(--primary-700);
}

.btn-glass {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
}

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(10px);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
    transform: translateY(-1px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

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

.hero-category-bar {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 20px;
    width: min(930px, calc(100% - 40px));
    padding: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
}

.hero-category-bar a {
    padding: 9px 14px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.hero-category-bar a:hover {
    background: rgba(255, 255, 255, 0.18);
}

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

.main-container {
    padding: 64px 0 96px;
}

.page-shell {
    padding: 112px 0 86px;
}

.content-section {
    margin-top: 64px;
}

.content-section:first-child {
    margin-top: 0;
}

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

.section-heading h2,
.page-hero h1,
.detail-content h1 {
    margin: 6px 0 0;
    color: var(--neutral-900);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-heading h2 {
    font-size: clamp(26px, 4vw, 36px);
}

.section-kicker,
.movie-category {
    padding: 7px 12px;
    color: var(--primary-700);
    background: var(--primary-50);
}

.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    color: var(--primary-700);
    background: var(--primary-50);
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease;
}

.section-more:hover {
    color: #ffffff;
    background: var(--primary-600);
}

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

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

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

.movie-card {
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

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

.movie-thumb {
    position: relative;
    height: 224px;
    margin: 0;
    overflow: hidden;
    background: var(--neutral-200);
}

.movie-thumb-wide {
    height: auto;
    min-height: 210px;
}

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

.movie-card:hover .movie-thumb img,
.category-panel-card:hover img {
    transform: scale(1.08);
}

.movie-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .movie-thumb::after {
    opacity: 1;
}

.movie-year,
.movie-badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    padding: 6px 10px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(8px);
}

.movie-year {
    right: 14px;
}

.movie-badge-left {
    left: 14px;
    background: var(--primary-600);
}

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

.movie-card-body h3 {
    min-height: 48px;
    margin: 10px 0 8px;
    color: var(--neutral-900);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 850;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

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

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

.movie-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--neutral-500);
    font-size: 13px;
}

.movie-meta-row span + span::before {
    content: "·";
    margin-right: 10px;
    color: var(--neutral-400);
}

.movie-card-horizontal .movie-card-link {
    display: grid;
    grid-template-columns: 260px 1fr;
}

.movie-card-body-wide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.movie-card-body-wide h3 {
    min-height: auto;
    font-size: 21px;
}

.gradient-panel {
    padding: 34px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
}

.horizontal-list {
    display: grid;
    gap: 20px;
}

.compact-list {
    gap: 14px;
}

.compact-list .movie-card-horizontal .movie-card-link {
    grid-template-columns: 116px 1fr;
}

.compact-list .movie-thumb-wide {
    min-height: 112px;
}

.compact-list .movie-card-body-wide {
    padding: 14px;
}

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

.compact-list .movie-card-body-wide p,
.compact-list .movie-meta-row {
    display: none;
}

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

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

.rank-item a {
    display: grid;
    grid-template-columns: 54px 64px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--neutral-200);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(28, 25, 23, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rank-item a:hover {
    border-color: var(--primary-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.rank-number {
    color: var(--primary-600);
    font-size: 22px;
    font-weight: 900;
}

.rank-item img {
    width: 64px;
    height: 76px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-title {
    color: var(--neutral-900);
    font-weight: 850;
    line-height: 1.35;
}

.rank-meta {
    color: var(--neutral-500);
    font-size: 13px;
    text-align: right;
}

.page-hero {
    position: relative;
    padding: 64px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
}

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

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

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--neutral-600);
    font-size: 18px;
    line-height: 1.8;
}

.category-hero {
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.30));
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.category-hero h1,
.category-hero p {
    color: #ffffff;
}

.category-hero .section-kicker {
    color: #ffffff;
    background: var(--primary-600);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

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

.detail-breadcrumb {
    color: var(--neutral-500);
}

.detail-breadcrumb a:hover {
    color: var(--primary-600);
}

.category-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.category-panel-card {
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.category-panel-card a {
    position: relative;
    display: block;
    min-height: 260px;
    overflow: hidden;
}

.category-panel-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-panel-card a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.18));
}

.category-panel-card div {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: #ffffff;
}

.category-panel-card span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--primary-600);
    font-size: 13px;
    font-weight: 800;
}

.category-panel-card h2 {
    margin: 14px 0 8px;
    font-size: 30px;
    font-weight: 900;
}

.category-panel-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.65;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 160px 160px 140px;
    gap: 12px;
    margin-bottom: 28px;
    padding: 14px;
    border: 1px solid var(--neutral-200);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    padding: 12px 14px;
}

.detail-shell {
    padding-top: 104px;
}

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

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

.player-card,
.detail-content,
.sticky-box {
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.player-card {
    overflow: hidden;
}

.movie-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000000;
}

.movie-player video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.24));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
    width: 82px;
    height: 82px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary-600);
    font-size: 32px;
    box-shadow: 0 18px 45px rgba(2, 132, 199, 0.40);
}

.player-overlay strong {
    max-width: min(720px, calc(100% - 40px));
    font-size: clamp(20px, 4vw, 34px);
    text-align: center;
}

.detail-content {
    margin-top: 24px;
    padding: 32px;
}

.detail-content h1 {
    margin-top: 16px;
    font-size: clamp(30px, 5vw, 48px);
}

.detail-content h2,
.sticky-box h2 {
    margin: 30px 0 12px;
    color: var(--neutral-900);
    font-size: 22px;
    font-weight: 900;
}

.detail-content p {
    color: var(--neutral-700);
    line-height: 1.9;
    font-size: 16px;
}

.lead-text {
    color: var(--neutral-800) !important;
    font-size: 18px !important;
    font-weight: 600;
}

.detail-meta,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-meta {
    margin: 16px 0 18px;
    color: var(--neutral-500);
}

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

.detail-meta span {
    padding: 8px 12px;
    background: var(--neutral-100);
}

.tag-row span {
    padding: 7px 11px;
    color: var(--secondary-600);
    background: var(--secondary-50);
}

.muted-tags span {
    color: var(--accent-600);
    background: var(--accent-50);
}

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

.sticky-box {
    position: sticky;
    top: 100px;
    padding: 20px;
}

.site-footer {
    background: linear-gradient(135deg, var(--neutral-900), var(--neutral-800), var(--neutral-900));
    color: var(--neutral-300);
}

.footer-container {
    padding: 56px 0 28px;
}

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

.footer-logo strong {
    color: #ffffff;
}

.footer-logo small,
.footer-brand p,
.footer-main li a,
.footer-bottom {
    color: var(--neutral-400);
}

.footer-brand p {
    max-width: 520px;
    line-height: 1.8;
}

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

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

.footer-main li + li {
    margin-top: 10px;
}

.footer-main a:hover {
    color: var(--primary-100);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 14px;
}

.is-filtered-out {
    display: none !important;
}

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

    .mobile-toggle {
        display: inline-flex;
    }

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

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

    .sticky-box {
        position: static;
    }

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

@media (max-width: 780px) {
    .nav-container {
        height: 68px;
    }

    .brand-copy small {
        display: none;
    }

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

    .hero,
    .hero-content {
        min-height: 82vh;
    }

    .hero-content {
        padding: 132px 0 120px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-category-bar {
        overflow-x: auto;
        justify-content: flex-start;
        border-radius: 22px;
    }

    .hero-category-bar a {
        flex: 0 0 auto;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .four-columns,
    .three-columns,
    .rank-grid,
    .category-panel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .movie-card-horizontal .movie-card-link,
    .compact-list .movie-card-horizontal .movie-card-link {
        grid-template-columns: 1fr;
    }

    .movie-thumb-wide {
        min-height: 210px;
    }

    .rank-item a {
        grid-template-columns: 42px 54px 1fr;
    }

    .rank-meta {
        grid-column: 3;
        text-align: left;
    }

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

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

    .detail-content {
        padding: 24px;
    }

    .footer-main,
    .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .main-container,
    .page-shell,
    .footer-container,
    .nav-container {
        width: min(100% - 24px, 1180px);
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .four-columns,
    .three-columns,
    .rank-grid,
    .category-panel-grid {
        grid-template-columns: 1fr;
    }

    .movie-thumb {
        height: 238px;
    }

    .gradient-panel {
        padding: 24px;
        border-radius: 24px;
    }

    .category-panel-card a {
        min-height: 230px;
    }

    .play-icon {
        width: 66px;
        height: 66px;
        font-size: 26px;
    }
}
