:root {
    color-scheme: light;
    --bg: #f8fafc;
    --paper: #ffffff;
    --ink: #0f172a;
    --muted: #64748b;
    --soft: #e2e8f0;
    --line: #dbe4ef;
    --dark: #020617;
    --dark-2: #0f172a;
    --cyan: #06b6d4;
    --cyan-deep: #0891b2;
    --blue: #2563eb;
    --orange: #f97316;
    --green: #14b8a6;
    --purple: #8b5cf6;
    --rose: #f43f5e;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    --radius: 22px;
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.no-scroll {
    overflow: hidden;
}

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: 50;
    background: linear-gradient(90deg, #020617, #0f172a 52%, #020617);
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 48px rgba(2, 6, 23, 0.3);
}

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

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    min-width: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 35% 25%, #67e8f9, #06b6d4 42%, #1d4ed8 100%);
    box-shadow: 0 0 26px rgba(6, 182, 212, 0.55);
    color: #ffffff;
    font-weight: 900;
}

.logo-name {
    display: block;
    font-size: 22px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-subtitle {
    display: block;
    margin-top: 4px;
    color: #22d3ee;
    font-size: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #cbd5e1;
    font-weight: 600;
}

.nav-links a {
    position: relative;
    padding: 29px 0;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--cyan), #60a5fa);
    transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #22d3ee;
}

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

.header-search {
    position: relative;
    width: 220px;
}

.header-search input,
.search-box input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    border-radius: 13px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.search-box input:focus {
    border-color: rgba(34, 211, 238, 0.8);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15);
}

.header-search input::placeholder,
.search-box input::placeholder {
    color: #94a3b8;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: #0f172a;
}

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

.mobile-panel .container {
    padding: 12px 0 18px;
}

.mobile-panel a {
    display: block;
    color: #cbd5e1;
    padding: 12px 14px;
    border-radius: 12px;
}

.mobile-panel a:hover,
.mobile-panel a.active {
    background: rgba(148, 163, 184, 0.12);
    color: #22d3ee;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 15% 15%, rgba(34, 211, 238, 0.28), transparent 32%), radial-gradient(circle at 85% 5%, rgba(59, 130, 246, 0.32), transparent 34%), linear-gradient(135deg, #020617 0%, #172554 50%, #164e63 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.25;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(180deg, transparent, #f8fafc);
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
    align-items: center;
    gap: 48px;
    padding: 72px 0 94px;
}

.hero-eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border: 1px solid rgba(34, 211, 238, 0.35);
    background: rgba(14, 116, 144, 0.2);
    color: #a5f3fc;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero h1 {
    margin: 20px 0 18px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.hero-lead {
    max-width: 680px;
    color: #c7eff7;
    font-size: clamp(18px, 2.2vw, 25px);
    line-height: 1.7;
    margin: 0 0 30px;
}

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

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

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, #06b6d4, #2563eb);
    box-shadow: 0 15px 34px rgba(37, 99, 235, 0.33);
}

.btn-primary:hover {
    box-shadow: 0 22px 40px rgba(37, 99, 235, 0.45);
}

.btn-ghost {
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.22);
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 640px;
}

.hero-stat {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 18px;
    padding: 18px;
    backdrop-filter: blur(10px);
}

.hero-stat strong {
    display: block;
    font-size: 27px;
    color: #ffffff;
}

.hero-stat span {
    display: block;
    margin-top: 5px;
    color: #a5f3fc;
    font-size: 13px;
}

.hero-showcase {
    position: relative;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 18px;
    align-items: end;
    opacity: 0;
    transform: translateX(28px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 2 / 3;
    box-shadow: 0 28px 68px rgba(0, 0, 0, 0.36);
    background: #0f172a;
}

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

.hero-slide:hover .hero-poster img {
    transform: scale(1.06);
}

.hero-card {
    align-self: center;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.64);
    box-shadow: 0 26px 70px rgba(2, 6, 23, 0.36);
    backdrop-filter: blur(16px);
}

.hero-card h2 {
    margin: 12px 0 12px;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.18;
}

.hero-card p {
    color: #cbd5e1;
    line-height: 1.75;
    margin: 0 0 22px;
}

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

.hero-tags span,
.tag-list span,
.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.12);
    color: #0891b2;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
}

.hero-card .hero-tags span {
    background: rgba(34, 211, 238, 0.14);
    color: #a5f3fc;
}

.hero-dots {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 9px;
}

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

.hero-dot.active {
    width: 32px;
    background: #22d3ee;
}

.section {
    padding: 72px 0;
}

.section-tight {
    padding: 46px 0;
}

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

.section-title {
    margin: 10px 0 8px;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.section-desc {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
}

.link-arrow {
    color: var(--cyan-deep);
    font-weight: 900;
    white-space: nowrap;
}

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

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

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 22px;
    background: var(--paper);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
    border-color: rgba(6, 182, 212, 0.38);
}

.card-poster {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    aspect-ratio: 2 / 3;
}

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

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

.card-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(2, 6, 23, 0.75));
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

.play-chip,
.rank-chip {
    position: absolute;
    z-index: 2;
    left: 12px;
    top: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(2, 6, 23, 0.72);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.rank-chip {
    background: linear-gradient(90deg, #f97316, #f43f5e);
}

.card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px;
}

.card-title {
    margin: 0 0 9px;
    color: #0f172a;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.card-desc {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.feature-item {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.13);
}

.feature-poster {
    min-height: 190px;
    background: #0f172a;
}

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

.feature-content {
    padding: 26px;
}

.feature-content h3 {
    margin: 0 0 12px;
    font-size: 26px;
}

.feature-content p {
    margin: 0 0 18px;
    color: #64748b;
    line-height: 1.75;
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    border-radius: 24px;
    padding: 28px;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 26px 56px rgba(15, 23, 42, 0.24);
}

.category-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -50px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.category-card h2,
.category-card h3 {
    margin: 0 0 10px;
    font-size: 27px;
}

.category-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.65;
}

.category-card strong {
    position: relative;
    z-index: 2;
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.14);
}

.grad-1 { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.grad-2 { background: linear-gradient(135deg, #8b5cf6, #2563eb); }
.grad-3 { background: linear-gradient(135deg, #f43f5e, #f97316); }
.grad-4 { background: linear-gradient(135deg, #14b8a6, #16a34a); }
.grad-5 { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.grad-6 { background: linear-gradient(135deg, #0f172a, #06b6d4); }
.grad-7 { background: linear-gradient(135deg, #eab308, #f97316); }
.grad-8 { background: linear-gradient(135deg, #7c2d12, #be123c); }
.grad-9 { background: linear-gradient(135deg, #334155, #0f766e); }
.grad-10 { background: linear-gradient(135deg, #4338ca, #0891b2); }

.breadcrumb {
    padding: 22px 0;
    color: #64748b;
    font-size: 14px;
}

.breadcrumb a {
    color: #0891b2;
    font-weight: 800;
}

.page-hero {
    color: #ffffff;
    padding: 70px 0;
    background: radial-gradient(circle at 12% 12%, rgba(34, 211, 238, 0.28), transparent 34%), linear-gradient(135deg, #020617, #172554 52%, #0f766e);
}

.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #c7eff7;
    font-size: 18px;
    line-height: 1.8;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
    padding: 16px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.search-box {
    flex: 1 1 280px;
    max-width: 520px;
}

.search-box input {
    color: #0f172a;
    background: #f8fafc;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-pills button,
.filter-pills a {
    border: 1px solid #dbe4ef;
    background: #ffffff;
    color: #475569;
    border-radius: 999px;
    padding: 9px 13px;
    cursor: pointer;
    font-weight: 800;
}

.filter-pills button.active,
.filter-pills a.active,
.filter-pills button:hover,
.filter-pills a:hover {
    color: #ffffff;
    border-color: #06b6d4;
    background: linear-gradient(90deg, #06b6d4, #2563eb);
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 74px 84px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #ffffff;
    border-radius: 20px;
    padding: 12px 16px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-item:hover {
    transform: translateY(-3px);
    border-color: rgba(6, 182, 212, 0.4);
}

.ranking-number {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    font-weight: 900;
}

.ranking-thumb {
    width: 70px;
    height: 92px;
    overflow: hidden;
    border-radius: 13px;
    background: #0f172a;
}

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

.ranking-main h2,
.ranking-main h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.ranking-main p {
    margin: 0;
    color: #64748b;
    line-height: 1.55;
}

.ranking-score {
    color: #f97316;
    font-size: 20px;
    font-weight: 900;
}

.detail-hero {
    position: relative;
    color: #ffffff;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.82) 48%, rgba(2, 6, 23, 0.35)), radial-gradient(circle at 70% 20%, rgba(6, 182, 212, 0.22), transparent 30%);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
    padding: 76px 0;
}

.detail-cover {
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 2 / 3;
    background: #0f172a;
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.38);
}

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

.detail-title {
    margin: 18px 0 16px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.detail-one-line {
    max-width: 820px;
    margin: 0 0 24px;
    color: #c7eff7;
    font-size: 19px;
    line-height: 1.8;
}

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

.player-panel,
.content-panel,
.side-panel {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.player-box {
    position: relative;
    background: #020617;
    aspect-ratio: 16 / 9;
}

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

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.72));
    cursor: pointer;
    z-index: 4;
}

.player-start.hidden {
    display: none;
}

.player-start span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    box-shadow: 0 20px 44px rgba(37, 99, 235, 0.42);
    font-size: 34px;
    padding-left: 5px;
}

.player-meta {
    padding: 24px;
}

.player-meta h2 {
    margin: 0 0 8px;
    font-size: 25px;
}

.player-meta p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.content-panel {
    margin-top: 24px;
    padding: 30px;
}

.content-panel h2,
.content-panel h3 {
    margin: 0 0 12px;
    color: #0f172a;
}

.content-panel p {
    margin: 0 0 24px;
    color: #475569;
    line-height: 1.9;
}

.side-panel {
    padding: 22px;
    position: sticky;
    top: 104px;
}

.info-table {
    display: grid;
    gap: 0;
    margin-top: 18px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #edf2f7;
}

.info-row span:first-child {
    color: #64748b;
}

.info-row span:last-child {
    color: #0f172a;
    font-weight: 900;
    text-align: right;
}

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

.mini-card {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.mini-card:hover {
    transform: translateY(-3px);
    border-color: rgba(6, 182, 212, 0.38);
}

.mini-card img {
    width: 84px;
    height: 110px;
    object-fit: cover;
    border-radius: 13px;
}

.mini-card strong {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.mini-card span {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.site-footer {
    margin-top: 64px;
    background: linear-gradient(180deg, #0f172a, #020617);
    color: #94a3b8;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
    padding: 48px 0;
}

.footer-inner h2,
.footer-inner h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

.footer-inner p,
.footer-inner li {
    color: #94a3b8;
    line-height: 1.75;
}

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

.footer-inner a:hover {
    color: #22d3ee;
}

.copyright {
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    padding: 18px 0;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

.empty-note {
    display: none;
    padding: 38px;
    text-align: center;
    color: #64748b;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #dbe4ef;
}

.empty-note.show {
    display: block;
}

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

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

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

    .side-panel {
        position: static;
    }
}

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

    .menu-button {
        display: inline-grid;
        place-items: center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 54px 0 86px;
    }

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

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

    .feature-item {
        grid-template-columns: 1fr;
    }

    .detail-hero-inner {
        grid-template-columns: 170px minmax(0, 1fr);
    }

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .logo-name {
        font-size: 18px;
    }

    .logo-subtitle {
        display: none;
    }

    .hero h1,
    .detail-title {
        letter-spacing: -0.03em;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        min-height: 720px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hero-poster {
        max-width: 260px;
        margin: 0 auto;
    }

    .hero-dots {
        bottom: 8px;
    }

    .section-header {
        display: block;
    }

    .grid-4,
    .grid-5,
    .grid-6 {
        grid-template-columns: 1fr;
    }

    .ranking-item {
        grid-template-columns: 48px 68px minmax(0, 1fr);
    }

    .ranking-score {
        grid-column: 3;
        font-size: 16px;
    }

    .detail-hero-inner {
        grid-template-columns: 1fr;
        padding: 50px 0;
    }

    .detail-cover {
        width: 190px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
    }
}
