:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --teal-950: #042f2e;
    --teal-900: #134e4a;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    --radius-xl: 24px;
    --radius-lg: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--slate-900);
    background: var(--stone-50);
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: #fff;
    background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
    border-bottom: 1px solid rgba(245, 158, 11, 0.22);
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.28);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.logo-mark {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-700));
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
    font-size: 14px;
}

.logo-text strong {
    display: block;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0.05em;
}

.logo-text small {
    display: block;
    margin-top: 3px;
    color: var(--stone-300);
    font-size: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    font-size: 14px;
    font-weight: 600;
}

.nav-links a {
    position: relative;
    color: var(--stone-200);
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--amber-500);
    transition: right 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--amber-300);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    right: 0;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.98);
}

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

.mobile-nav-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 16px 0 20px;
}

.mobile-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--stone-200);
}

.hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: var(--slate-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 900ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.82) 48%, rgba(15, 23, 42, 0.12));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 780px;
    color: #fff;
    padding-top: 38px;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 14px;
    color: #fff;
    background: rgba(217, 119, 6, 0.92);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero h1 {
    margin: 18px 0 14px;
    max-width: 760px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 650px;
    margin: 0 0 26px;
    color: var(--stone-200);
    font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags span,
.tag-list span {
    display: inline-flex;
    padding: 5px 11px;
    color: var(--stone-100);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 12px;
}

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

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

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    box-shadow: 0 14px 30px rgba(217, 119, 6, 0.32);
}

.btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 20;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transform: translateY(-50%);
    font-size: 32px;
}

.hero-control:hover {
    background: rgba(0, 0, 0, 0.55);
}

.hero-control.prev {
    left: 18px;
}

.hero-control.next {
    right: 18px;
}

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

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

.hero-dot.is-active {
    width: 34px;
    background: var(--amber-500);
}

.hero-search {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 30;
    display: flex;
    width: min(720px, calc(100% - 32px));
    padding: 8px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
}

.hero-search input,
.filter-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--slate-900);
    background: #fff;
}

.hero-search input {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 12px 0 0 12px;
}

.hero-search button {
    min-width: 98px;
    border: 0;
    border-radius: 0 12px 12px 0;
    color: #fff;
    background: var(--amber-600);
    font-weight: 800;
    cursor: pointer;
}

.section {
    padding: 74px 0;
}

.light-section {
    background: var(--stone-50);
}

.dark-section {
    color: #fff;
    background: linear-gradient(180deg, var(--slate-800), var(--slate-700));
}

.night-section {
    color: #fff;
    background: var(--slate-900);
}

.slate-gradient {
    color: #fff;
    background: linear-gradient(120deg, var(--teal-900), var(--slate-900), var(--slate-800));
}

.amber-section {
    background: #fffbeb;
}

.deep-section {
    color: #fff;
    background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.22), transparent 34%), linear-gradient(135deg, var(--teal-950), var(--slate-900));
}

.section-head {
    margin-bottom: 32px;
}

.section-head h2,
.page-hero h1 {
    margin: 12px 0 8px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-head p,
.page-hero p {
    margin: 0;
    color: var(--stone-600);
    font-size: 17px;
}

.light-text p,
.dark-section .section-head p,
.night-section .section-head p,
.slate-gradient .section-head p {
    color: var(--stone-300);
}

.split-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.center-head {
    text-align: center;
}

.center-head .eyebrow {
    margin: 0 auto;
}

.text-link {
    color: var(--amber-500);
    font-weight: 800;
}

.horizontal-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 330px);
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
}

.horizontal-scroll .movie-card {
    scroll-snap-align: start;
}

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

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

.movie-card-link,
.movie-card > a {
    display: block;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: var(--slate-800);
}

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

.poster-wrap img {
    height: 100%;
}

.movie-card a:hover img {
    transform: scale(1.055);
}

.poster-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    color: #fff;
    background: rgba(217, 119, 6, 0.92);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

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

.meta-line {
    display: flex;
    gap: 10px;
    color: var(--amber-700);
    font-size: 12px;
    font-weight: 800;
}

.movie-card h2 {
    margin: 8px 0 9px;
    color: var(--slate-900);
    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.movie-card .tag-list {
    margin-top: 14px;
}

.movie-card .tag-list span {
    color: var(--stone-600);
    background: var(--stone-100);
    border: 1px solid var(--stone-200);
}

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

.category-tile a {
    position: relative;
    display: block;
    min-height: 230px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: #fff;
    background: var(--slate-900);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.14);
}

.category-tile img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile a:hover img {
    opacity: 0.88;
    transform: scale(1.06);
}

.category-tile div {
    position: absolute;
    inset: auto 0 0 0;
    padding: 48px 18px 18px;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent);
}

.category-tile span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--amber-300);
    font-size: 12px;
    font-weight: 900;
}

.category-tile h2 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 900;
}

.category-tile p {
    margin: 0;
    color: var(--stone-200);
    font-size: 13px;
}

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

.large-tile a,
.large-tile img {
    min-height: 310px;
}

.timeline-list {
    max-width: 900px;
}

.timeline-item {
    position: relative;
    padding-left: 42px;
    padding-bottom: 28px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 18px;
    bottom: -4px;
    width: 2px;
    background: linear-gradient(var(--amber-500), transparent);
}

.timeline-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--amber-500);
    box-shadow: 0 0 0 7px rgba(245, 158, 11, 0.15);
}

.timeline-item a {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    padding: 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px);
}

.timeline-item img {
    width: 180px;
    height: 116px;
    object-fit: cover;
    border-radius: 14px;
}

.timeline-item span,
.eyebrow {
    font-size: 12px;
}

.timeline-item h2 {
    margin: 2px 0 8px;
    font-size: 22px;
}

.timeline-item p {
    margin: 0;
    color: var(--stone-300);
}

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

.spot-card a {
    position: relative;
    display: block;
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    color: #fff;
    box-shadow: var(--shadow);
}

.spot-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.spot-card a:hover img {
    transform: scale(1.08);
}

.spot-card div {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2), transparent);
}

.spot-card strong {
    color: rgba(255, 255, 255, 0.24);
    font-size: 60px;
    line-height: 1;
}

.spot-card h2 {
    margin: 10px 0 8px;
    font-size: 26px;
}

.spot-card p {
    margin: 0;
    color: var(--stone-200);
}

.masonry-grid {
    column-count: 3;
    column-gap: 24px;
}

.masonry-grid .movie-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 24px;
    break-inside: avoid;
}

.deep-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: center;
    padding: 36px;
    background: rgba(30, 41, 59, 0.68);
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(18px);
}

.deep-card h2 {
    margin: 18px 0 12px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
}

.deep-card p,
.deep-card blockquote {
    color: var(--stone-300);
    font-size: 17px;
}

.deep-card blockquote {
    margin: 24px 0;
    padding-left: 18px;
    border-left: 4px solid var(--amber-500);
}

.deep-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.mixed-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 28px;
}

.mixed-left {
    display: grid;
    gap: 18px;
}

.compact-card a {
    display: grid;
    grid-template-columns: 176px 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px;
}

.compact-card img {
    width: 176px;
    height: 132px;
    border-radius: 14px;
    object-fit: cover;
}

.compact-card .eyebrow {
    color: var(--amber-700);
    background: #fff7ed;
}

.mixed-feature a {
    display: block;
    height: 100%;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, var(--teal-900), var(--slate-900));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.mixed-feature img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.mixed-feature div {
    padding: 26px;
}

.mixed-feature span,
.mixed-feature strong {
    color: var(--amber-300);
    font-weight: 900;
}

.mixed-feature h2 {
    margin: 10px 0;
    font-size: 28px;
}

.mixed-feature p {
    color: var(--stone-300);
}

.page-hero,
.detail-hero {
    color: #fff;
    background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.24), transparent 28%), linear-gradient(135deg, var(--slate-900), var(--teal-900));
}

.page-hero {
    padding: 84px 0 68px;
}

.compact-hero {
    padding-top: 58px;
}

.rank-hero,
.search-hero {
    background: radial-gradient(circle at 70% 20%, rgba(251, 191, 36, 0.22), transparent 28%), linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.page-hero p {
    max-width: 720px;
    color: var(--stone-300);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    padding-bottom: 20px;
    color: var(--stone-300);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: var(--amber-300);
}

.filter-box {
    width: min(650px, 100%);
    margin-top: 26px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    backdrop-filter: blur(14px);
}

.filter-box input {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 12px;
}

.wide-filter {
    width: min(760px, 100%);
}

.empty-state {
    display: none;
    margin-top: 26px;
    padding: 24px;
    text-align: center;
    color: var(--stone-600);
    background: #fff;
    border-radius: var(--radius-lg);
}

.empty-state.is-visible {
    display: block;
}

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

.rank-row a {
    display: grid;
    grid-template-columns: 72px 104px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
}

.rank-number {
    color: var(--amber-600);
    font-size: 26px;
    font-weight: 900;
    text-align: center;
}

.rank-row img {
    width: 104px;
    height: 78px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-info h2 {
    margin: 4px 0 5px;
}

.rank-info .eyebrow {
    color: var(--amber-700);
    background: #fffbeb;
}

.rank-action {
    display: inline-flex;
    padding: 9px 14px;
    color: #fff;
    background: var(--amber-600);
    border-radius: 999px;
    font-weight: 900;
}

.detail-hero {
    padding: 34px 0 68px;
    background-size: cover;
    background-position: center;
}

.detail-hero-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 38px;
    align-items: center;
}

.detail-poster {
    width: 300px;
    height: 430px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.detail-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.detail-copy p {
    max-width: 780px;
    color: var(--stone-200);
    font-size: 19px;
}

.detail-tags {
    margin: 22px 0 28px;
}

.player-section {
    color: #fff;
    background: var(--slate-950);
}

.player-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) 0.8fr;
    gap: 26px;
    align-items: stretch;
}

.video-box {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.video-box video {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    background: #000;
    object-fit: contain;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.62));
    cursor: pointer;
}

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

.play-circle {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    padding-left: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    box-shadow: 0 18px 38px rgba(217, 119, 6, 0.35);
    font-size: 30px;
}

.player-overlay strong {
    font-size: 18px;
}

.watch-card,
.article-panel,
.side-panel {
    padding: 28px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.09);
}

.watch-card {
    color: #fff;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.watch-card h2,
.article-panel h2,
.side-panel h2 {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 900;
}

.watch-card p {
    color: var(--stone-300);
}

.watch-card dl {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
}

.watch-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.watch-card dt {
    color: var(--stone-300);
}

.watch-card dd {
    margin: 0;
    text-align: right;
}

.detail-content-section {
    background: var(--stone-100);
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) 0.8fr;
    gap: 26px;
}

.article-panel p {
    margin: 0 0 24px;
    color: var(--stone-600);
    font-size: 17px;
}

.side-panel ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.side-panel li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--stone-200);
}

.side-panel strong {
    color: var(--stone-500);
}

.side-panel a {
    color: var(--amber-700);
    font-weight: 800;
}

.site-footer {
    color: var(--stone-300);
    background: linear-gradient(90deg, var(--slate-950), var(--slate-900), var(--slate-950));
    border-top: 1px solid rgba(245, 158, 11, 0.18);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr;
    gap: 34px;
    padding: 52px 0 34px;
}

.footer-brand p {
    max-width: 520px;
    color: var(--stone-400, #a8a29e);
}

.footer-logo {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 16px;
}

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

.footer-links a:hover {
    color: var(--amber-300);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 0 26px;
    color: var(--stone-500);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 14px;
        font-size: 13px;
    }

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

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

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

    .nav-toggle {
        display: block;
    }

    .hero {
        height: 640px;
    }

    .hero-content {
        padding-right: 28px;
    }

    .hero-control {
        display: none;
    }

    .section {
        padding: 54px 0;
    }

    .split-head,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .movie-grid,
    .category-grid,
    .overview-grid,
    .spot-grid,
    .footer-grid,
    .mixed-layout,
    .deep-card,
    .player-layout,
    .detail-content-grid,
    .detail-hero-inner {
        grid-template-columns: 1fr;
    }

    .masonry-grid {
        column-count: 2;
    }

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

    .timeline-item img {
        width: 100%;
        height: 190px;
    }

    .detail-poster {
        width: 220px;
        height: 318px;
    }

    .rank-row a {
        grid-template-columns: 52px 86px 1fr;
    }

    .rank-action {
        display: none;
    }
}

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

    .logo-text strong {
        font-size: 20px;
    }

    .logo-text small {
        font-size: 10px;
    }

    .hero {
        height: 610px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-search {
        flex-direction: column;
        gap: 8px;
    }

    .hero-search input,
    .hero-search button {
        width: 100%;
        border-radius: 12px;
    }

    .movie-grid,
    .category-grid,
    .overview-grid,
    .spot-grid {
        grid-template-columns: 1fr;
    }

    .masonry-grid {
        column-count: 1;
    }

    .compact-card a,
    .rank-row a {
        grid-template-columns: 1fr;
    }

    .compact-card img,
    .rank-row img {
        width: 100%;
        height: 190px;
    }

    .rank-number {
        text-align: left;
    }

    .video-box,
    .video-box video {
        min-height: 260px;
    }
}
