:root {
    color-scheme: light;
    --bg: #f8fafc;
    --bg-soft: #eef6ff;
    --surface: #ffffff;
    --surface-strong: #f9fafb;
    --text: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --cyan: #06b6d4;
    --teal: #14b8a6;
    --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;
    -webkit-text-size-adjust: 100%;
}

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

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

img.is-empty {
    opacity: 0;
}

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-solid,
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.site-header.is-solid .brand,
.site-header.is-scrolled .brand {
    color: #0f172a;
    text-shadow: none;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--cyan), var(--teal));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

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

.nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 650;
    transition: color 0.2s ease;
}

.site-header.is-solid .nav-links a,
.site-header.is-scrolled .nav-links a {
    color: #334155;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.site-header.is-solid .nav-toggle,
.site-header.is-scrolled .nav-toggle {
    color: #0f172a;
    background: #eef2ff;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 48%, #14b8a6 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.28), transparent 28%),
        radial-gradient(circle at 80% 12%, rgba(14, 165, 233, 0.28), transparent 25%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.32), rgba(15, 23, 42, 0.42));
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.7s ease, transform 5s ease;
    filter: saturate(1.12) contrast(1.04);
}

.hero-bg-image.is-active {
    opacity: 0.22;
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 130px 0 70px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: 56px;
    align-items: center;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.94);
}

.hero h1 {
    margin: 0 0 24px;
    font-size: clamp(46px, 7vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    text-shadow: 0 22px 54px rgba(15, 23, 42, 0.3);
}

.hero-lead {
    max-width: 650px;
    margin: 0 0 30px;
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 10px 28px rgba(15, 23, 42, 0.22);
}

.hero-actions,
.form-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.button-primary,
.button-ghost,
.button-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 0;
    padding: 13px 22px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
    color: var(--blue);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

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

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

.button-primary:hover,
.button-ghost:hover,
.button-dark:hover {
    transform: translateY(-2px) scale(1.02);
}

.hero-search {
    margin-top: 28px;
    display: flex;
    width: min(620px, 100%);
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
}

.hero-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 17px 22px;
    color: #0f172a;
    background: transparent;
}

.hero-search button {
    border: 0;
    padding: 0 26px;
    color: #ffffff;
    background: var(--blue);
    font-weight: 800;
}

.hero-stage {
    position: relative;
    min-height: 590px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(28px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hero-card {
    height: 100%;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(18px);
}

.hero-card-poster {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.7), rgba(207, 250, 254, 0.7));
}

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

.hero-card-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.82));
}

.hero-rank {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.92);
    font-weight: 850;
}

.hero-card-body {
    padding: 24px;
}

.hero-card-body h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.18;
}

.hero-card-body p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.86);
}

.hero-dots {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    gap: 8px;
    z-index: 4;
}

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

.hero-dots button.is-active {
    width: 28px;
    background: #ffffff;
}

.scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    z-index: 3;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.76);
    border-radius: 999px;
    transform: translateX(-50%);
}

.scroll-hint::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 999px;
    background: #ffffff;
    animation: scrollHint 1.8s ease-in-out infinite;
}

.section {
    padding: 76px 0;
}

.section.alt {
    background: linear-gradient(180deg, #ffffff, #f1f7ff);
}

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

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

.section-kicker {
    margin: 0 0 8px;
    color: var(--blue);
    font-weight: 850;
}

.section-title,
.page-title {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.section-desc,
.page-desc {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 17px;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-wrap {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
}

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(15, 23, 42, 0.36);
    transition: opacity 0.24s ease;
}

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

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.92);
    transform: translate(-50%, -50%) scale(0.78);
    opacity: 0;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.card-label,
.card-year,
.rank-number {
    position: absolute;
    z-index: 3;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
}

.card-label {
    top: 10px;
    left: 10px;
    background: rgba(37, 99, 235, 0.92);
}

.card-year {
    right: 10px;
    bottom: 10px;
    background: rgba(15, 23, 42, 0.78);
}

.rank-number {
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.card-body {
    padding: 15px;
    flex: 1;
}

.card-body h3 {
    margin: 0 0 8px;
    min-height: 44px;
    font-size: 16px;
    line-height: 1.35;
    transition: color 0.18s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.card-meta,
.card-summary {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.card-summary {
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    color: #1e40af;
    background: #dbeafe;
    font-size: 12px;
    font-weight: 750;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    border-radius: 26px;
    padding: 26px;
    color: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.category-tile::after {
    content: "";
    position: absolute;
    top: -44px;
    right: -40px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    filter: blur(2px);
    transition: transform 0.3s ease;
}

.category-tile:hover::after {
    transform: scale(1.18);
}

.category-tile h2,
.category-tile h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 8px;
    font-size: 24px;
}

.category-tile p,
.category-tile span {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.blue-cyan {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.purple-pink {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.orange-red {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.green-teal {
    background: linear-gradient(135deg, #16a34a, #14b8a6);
}

.indigo-blue {
    background: linear-gradient(135deg, #4f46e5, #2563eb);
}

.rose-orange {
    background: linear-gradient(135deg, #e11d48, #f97316);
}

.cyan-teal {
    background: linear-gradient(135deg, #0891b2, #0f766e);
}

.slate-blue {
    background: linear-gradient(135deg, #334155, #2563eb);
}

.emerald-lime {
    background: linear-gradient(135deg, #059669, #84cc16);
}

.violet-indigo {
    background: linear-gradient(135deg, #8b5cf6, #4f46e5);
}

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

.sky-blue {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.page-hero {
    padding: 134px 0 72px;
    color: #ffffff;
    background:
        radial-gradient(circle at 22% 10%, rgba(255, 255, 255, 0.24), transparent 26%),
        linear-gradient(135deg, #2563eb, #06b6d4 52%, #14b8a6);
}

.page-hero.compact {
    padding-bottom: 54px;
}

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

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

.filter-panel {
    margin-bottom: 28px;
    border-radius: 24px;
    padding: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.filter-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px;
    gap: 14px;
}

.filter-panel input,
.filter-panel select,
.search-panel input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 13px 16px;
    outline: 0;
    background: #ffffff;
    color: #0f172a;
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-panel input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.13);
}

.result-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.result-note:empty {
    display: none;
}

.is-hidden {
    display: none !important;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 64px 96px 1fr;
    gap: 18px;
    align-items: center;
    border-radius: 22px;
    padding: 14px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.ranking-index {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-size: 20px;
    font-weight: 900;
}

.ranking-thumb {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
}

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

.ranking-info h2,
.ranking-info h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.3;
}

.ranking-info p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 62px;
    color: #ffffff;
    background: #0f172a;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.18;
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px) saturate(1.15);
    transform: scale(1.04);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.72), rgba(15, 23, 42, 0.92));
}

.detail-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.34);
}

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

.detail-info h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 20px;
}

.detail-meta span {
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 750;
}

.detail-lead {
    max-width: 790px;
    margin: 0 0 22px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.player-section {
    padding: 66px 0 28px;
    background: #0b1120;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000000;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.68));
}

.player-overlay .play-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.38);
    font-size: 30px;
}

.player-overlay span:last-child {
    font-size: 18px;
    font-weight: 850;
}

.player-message {
    margin-top: 14px;
    color: #cbd5e1;
    min-height: 24px;
}

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

.article-card,
.side-card,
.search-panel {
    border-radius: 24px;
    padding: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.article-card h2,
.side-card h2,
.search-panel h2 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.25;
}

.article-card p {
    margin: 0 0 20px;
    color: #334155;
    font-size: 17px;
}

.article-card p:last-child {
    margin-bottom: 0;
}

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

.side-link {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 16px;
    padding: 8px;
    background: #f8fafc;
    transition: background 0.2s ease, transform 0.2s ease;
}

.side-link:hover {
    background: #eff6ff;
    transform: translateX(3px);
}

.side-link-img {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
}

.side-link-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-link strong {
    display: block;
    line-height: 1.25;
}

.side-link span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.search-panel {
    margin-bottom: 30px;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.site-footer {
    background: linear-gradient(180deg, #111827, #020617);
    color: #cbd5e1;
    padding: 56px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 850;
}

.footer-title {
    margin: 0 0 12px;
    color: #ffffff;
    font-weight: 800;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a:hover {
    color: #ffffff;
}

@keyframes scrollHint {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@media (max-width: 1080px) {
    .hero-content,
    .detail-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 540px;
    }

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

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

    .ranking-list {
        grid-template-columns: 1fr;
    }
}

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

    .brand {
        font-size: 20px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }

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

    .nav-links {
        position: absolute;
        top: 66px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        color: #0f172a;
        padding: 14px 18px;
    }

    .nav-links a::after {
        display: none;
    }

    .hero-content {
        padding-top: 105px;
        gap: 34px;
    }

    .hero-search {
        border-radius: 24px;
        flex-direction: column;
    }

    .hero-search button {
        min-height: 48px;
    }

    .hero-stage {
        min-height: 500px;
    }

    .hero-card-poster {
        height: 310px;
    }

    .section-head,
    .footer-grid {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }

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

    .category-grid {
        grid-template-columns: 1fr;
    }

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

    .ranking-item {
        grid-template-columns: 46px 78px 1fr;
        gap: 12px;
    }

    .ranking-index {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 16px;
    }

    .detail-grid {
        gap: 24px;
    }

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

    .article-card,
    .side-card,
    .search-panel {
        padding: 22px;
    }
}
