:root {
    --amber-50: #fff8ed;
    --amber-100: #ffedd5;
    --amber-200: #fed7aa;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-900: #78350f;
    --orange-500: #f97316;
    --rose-400: #fb7185;
    --green-500: #22c55e;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(120, 53, 15, 0.12);
    --shadow-strong: 0 24px 70px rgba(120, 53, 15, 0.22);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(255, 248, 237, 0.96), rgba(255, 237, 213, 0.96));
    border-bottom: 1px solid rgba(180, 83, 9, 0.12);
    box-shadow: 0 10px 30px rgba(120, 53, 15, 0.08);
    backdrop-filter: blur(16px);
}

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

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

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500), var(--rose-400));
    box-shadow: 0 12px 22px rgba(217, 119, 6, 0.28);
}

.brand-mark span {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid var(--white);
}

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

.brand-copy strong {
    font-size: 24px;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, var(--amber-700), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy em {
    margin-top: 4px;
    color: var(--amber-700);
    font-size: 12px;
    font-style: normal;
}

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

.nav-link {
    position: relative;
    color: var(--slate-700);
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--amber-700);
}

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

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

.top-search input,
.mobile-search input,
.search-panel input,
.card-filter-input {
    width: 100%;
    border: 1px solid rgba(180, 83, 9, 0.16);
    border-radius: 999px;
    padding: 12px 18px;
    color: var(--slate-900);
    outline: none;
    background: rgba(255, 255, 255, 0.82);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search input:focus,
.mobile-search input:focus,
.search-panel input:focus,
.card-filter-input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.top-search input {
    width: 230px;
}

.top-search button,
.mobile-search button,
.search-panel button,
.filter-reset {
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 10px 24px rgba(217, 119, 6, 0.22);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: var(--amber-700);
    border-radius: 99px;
}

.mobile-panel {
    display: none;
    padding: 0 16px 16px;
    background: rgba(255, 248, 237, 0.98);
}

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

.mobile-panel nav {
    display: grid;
    gap: 12px;
    margin: 8px 0 16px;
}

.hero-carousel {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500), var(--rose-400));
}

.hero-track {
    position: relative;
    min-height: 680px;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    filter: saturate(1.15);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.22), transparent 26%),
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.18), transparent 24%),
        linear-gradient(110deg, rgba(120, 53, 15, 0.95) 0%, rgba(217, 119, 6, 0.84) 38%, rgba(15, 23, 42, 0.28) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
    align-items: center;
    gap: 58px;
    padding: 92px 0;
}

.hero-copy {
    color: var(--white);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--amber-700);
    background: rgba(255, 237, 213, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy .eyebrow {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.hero-copy h1 {
    max-width: 780px;
    margin: 24px 0 18px;
    font-size: clamp(44px, 7vw, 82px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-lead {
    max-width: 760px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(18px, 2.3vw, 24px);
}

.hero-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    color: var(--amber-900);
    background: var(--amber-100);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero-tags .tag-pill {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
}

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

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

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

.btn.primary {
    color: var(--amber-700);
    background: var(--white);
    box-shadow: 0 16px 36px rgba(255, 255, 255, 0.22);
}

.btn.ghost {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.btn.ghost.amber {
    color: var(--amber-700);
    border-color: rgba(217, 119, 6, 0.28);
    background: rgba(255, 255, 255, 0.72);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.24);
    border-radius: 34px;
    box-shadow: 0 36px 80px rgba(15, 23, 42, 0.32);
    transform: rotate(2deg);
}

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

.hero-poster span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.58);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

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

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

.hero-dot {
    width: 12px;
    height: 12px;
    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: 36px;
    background: var(--white);
}

.section {
    padding: 72px 0;
}

.section-light {
    background: linear-gradient(180deg, var(--white), var(--amber-50));
}

.section-warm {
    background: linear-gradient(180deg, var(--amber-50), var(--amber-100));
}

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

.section-head h2,
.sub-hero h1 {
    margin: 14px 0 10px;
    color: var(--slate-900);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-head p,
.sub-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--slate-600);
    font-size: 17px;
}

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

.text-link {
    display: inline-flex;
    color: var(--amber-700);
    font-weight: 900;
}

.horizontal-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 320px;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 18px;
    scrollbar-color: var(--amber-500) var(--amber-100);
}

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

.movie-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    color: inherit;
    background: var(--white);
    border: 1px solid rgba(180, 83, 9, 0.10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    border-color: rgba(245, 158, 11, 0.38);
    box-shadow: var(--shadow-strong);
    transform: translateY(-8px);
}

.movie-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--amber-200), var(--orange-500));
}

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

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

.movie-badge,
.movie-year {
    position: absolute;
    top: 14px;
    z-index: 2;
    color: var(--white);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.20);
}

.movie-badge {
    right: 14px;
    background: var(--amber-500);
}

.movie-year {
    left: 14px;
    background: var(--green-500);
}

.movie-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.movie-content h3 {
    display: -webkit-box;
    min-height: 55px;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--slate-900);
    font-size: 20px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.movie-meta {
    margin: 0 0 10px;
    color: var(--amber-700);
    font-size: 14px;
    font-weight: 800;
}

.movie-desc {
    display: -webkit-box;
    min-height: 67px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--slate-600);
    font-size: 14px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.movie-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    color: var(--slate-600);
    font-size: 13px;
    font-weight: 900;
}

.movie-foot span:first-child {
    color: var(--amber-600);
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    padding: 24px;
    color: var(--white);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::before {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

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

.category-card span {
    position: relative;
    display: block;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 900;
}

.category-card p {
    position: relative;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 48px 58px minmax(0, 1fr) auto 48px;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: var(--white);
    border: 1px solid rgba(180, 83, 9, 0.10);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 26px rgba(120, 53, 15, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.rank-number {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--white);
    border-radius: 14px;
    background: linear-gradient(135deg, var(--amber-500), var(--rose-400));
    font-weight: 900;
}

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

.rank-title {
    overflow: hidden;
    color: var(--slate-900);
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-meta {
    color: var(--slate-600);
    font-size: 13px;
}

.rank-heat {
    color: var(--amber-700);
    font-weight: 900;
}

.sub-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.36), transparent 26%),
        linear-gradient(135deg, var(--amber-100), var(--amber-50));
}

.sub-hero::after {
    content: "";
    position: absolute;
    top: 34px;
    right: 8%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.28), rgba(251, 113, 133, 0.18));
    filter: blur(4px);
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(180, 83, 9, 0.10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.category-cover {
    position: relative;
    min-height: 230px;
    overflow: hidden;
}

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

.category-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.7), transparent);
}

.category-cover span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
}

.category-overview-body {
    padding: 24px;
}

.category-overview-body h2 {
    margin: 0 0 10px;
    font-size: 26px;
}

.category-overview-body p {
    margin: 0 0 18px;
    color: var(--slate-600);
}

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

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

.filter-bar,
.library-tools {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.library-tools {
    grid-template-columns: minmax(260px, 1fr);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    border: 1px solid rgba(180, 83, 9, 0.18);
    border-radius: 999px;
    padding: 9px 14px;
    color: var(--amber-700);
    background: var(--amber-50);
    cursor: pointer;
    font-weight: 800;
}

.chip.is-active,
.chip:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    max-width: 720px;
    margin-top: 26px;
}

.detail-hero {
    min-height: 430px;
    padding: 0;
    color: var(--white);
    background: var(--slate-900);
}

.detail-bg,
.detail-overlay {
    position: absolute;
    inset: 0;
}

.detail-bg {
    background-position: center;
    background-size: cover;
    filter: blur(4px) saturate(1.15);
    transform: scale(1.05);
}

.detail-overlay {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(120, 53, 15, 0.78)),
        linear-gradient(0deg, rgba(15, 23, 42, 0.75), transparent);
}

.detail-head {
    position: relative;
    z-index: 2;
    padding: 62px 0 56px;
}

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

.breadcrumb a:hover {
    color: var(--white);
}

.detail-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
}

.detail-title-row .section-kicker {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
}

.detail-title-row h1 {
    max-width: 900px;
    margin: 18px 0 14px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-title-row p {
    max-width: 900px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

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

.player-card,
.detail-side,
.prose-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(180, 83, 9, 0.10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.video-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--slate-900);
}

.video-shell video {
    width: 100%;
    height: 100%;
    background: #000000;
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    border: 0;
    cursor: pointer;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.68), rgba(15, 23, 42, 0.28));
}

.video-overlay.is-hidden {
    display: none;
}

.play-ring {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.32);
}

.play-ring span {
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid var(--white);
}

.video-overlay strong {
    font-size: 24px;
}

.video-overlay em {
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
}

.player-start {
    width: calc(100% - 36px);
    margin: 18px;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    cursor: pointer;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(217, 119, 6, 0.20);
}

.detail-side {
    padding: 18px;
}

.detail-side img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.detail-meta-list {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.detail-meta-list p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(180, 83, 9, 0.10);
}

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

.detail-meta-list span {
    color: var(--amber-700);
    font-weight: 800;
    text-align: right;
}

.prose-card {
    padding: 34px;
}

.prose-card h2 {
    margin: 0 0 14px;
    font-size: 30px;
}

.prose-card h2:not(:first-child) {
    margin-top: 28px;
}

.prose-card p {
    margin: 0;
    color: var(--slate-700);
    font-size: 17px;
}

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

.site-footer {
    color: var(--amber-50);
    background: linear-gradient(180deg, var(--amber-900), #451a03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 32px;
    padding: 48px 0;
}

.footer-brand {
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 900;
}

.site-footer p {
    margin: 0;
    color: var(--amber-200);
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--white);
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: var(--amber-200);
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 18px;
    color: var(--amber-200);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.is-filter-hidden {
    display: none;
}

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

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

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

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

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

    .mobile-toggle {
        display: block;
    }

    .hero-carousel,
    .hero-track,
    .hero-inner {
        min-height: 760px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 70px 0 90px;
    }

    .hero-poster {
        max-width: 360px;
        transform: none;
    }

    .hero-poster img {
        height: 420px;
    }

    .split-head,
    .detail-title-row {
        align-items: start;
        grid-template-columns: 1fr;
    }

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

    .detail-side {
        display: grid;
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 18px;
    }

    .detail-tags {
        grid-column: 1 / -1;
    }

    .compact-rank {
        grid-template-columns: 1fr;
    }

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

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

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

    .brand-copy em {
        display: none;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions,
    .sub-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 52px 0;
    }

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

    .movie-content {
        padding: 14px;
    }

    .movie-content h3 {
        min-height: 48px;
        font-size: 17px;
    }

    .movie-desc {
        min-height: 61px;
        font-size: 13px;
    }

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

    .rank-item {
        grid-template-columns: 36px 50px minmax(0, 1fr) 42px;
    }

    .rank-meta {
        display: none;
    }

    .rank-item img {
        width: 50px;
        height: 68px;
    }

    .search-panel {
        grid-template-columns: 1fr;
    }

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

    .detail-side img {
        max-width: 260px;
    }

    .prose-card {
        padding: 24px;
    }

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

@media (max-width: 460px) {
    .movie-grid,
    .related-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-scroll {
        grid-auto-columns: 82%;
    }
}
