:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --amber-950: #451a03;
    --white: #ffffff;
    --black: #111827;
    --muted: #7c5d26;
    --shadow: 0 18px 45px rgba(120, 53, 15, 0.16);
    --shadow-soft: 0 10px 26px rgba(120, 53, 15, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--amber-50), #fff7d6 52%, var(--amber-100));
    color: var(--amber-900);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.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, 251, 235, 0.96), rgba(254, 243, 199, 0.96), rgba(255, 251, 235, 0.96));
    border-bottom: 1px solid rgba(217, 119, 6, 0.18);
    box-shadow: 0 12px 28px rgba(120, 53, 15, 0.08);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-700));
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(217, 119, 6, 0.28);
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand-subtitle {
    margin-top: 3px;
    color: var(--amber-700);
    font-size: 12px;
    font-weight: 600;
}

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

.nav-link,
.mobile-link {
    color: var(--amber-900);
    font-weight: 800;
    transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
}

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

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--amber-100);
    color: var(--amber-900);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background: currentColor;
}

.mobile-menu {
    display: none;
    padding: 10px 16px 16px;
    border-top: 1px solid rgba(217, 119, 6, 0.16);
    background: var(--white);
}

.mobile-menu.is-open {
    display: grid;
    gap: 6px;
}

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
}

.mobile-link:hover,
.mobile-link.is-active {
    background: var(--amber-100);
    color: var(--amber-700);
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(69, 26, 3, 0.98), rgba(146, 64, 14, 0.94), rgba(217, 119, 6, 0.88));
    color: var(--white);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.23;
    background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 42px 42px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 580px;
    height: 580px;
    right: -190px;
    top: -210px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.38), transparent 64%);
}

.hero-shell {
    position: relative;
    z-index: 2;
    min-height: 640px;
    padding: 72px 0;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
    gap: 54px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(252, 211, 77, 0.18);
    color: var(--amber-200);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.category-hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p,
.category-hero p {
    margin: 0;
    color: var(--amber-100);
    font-size: clamp(17px, 2vw, 22px);
    max-width: 760px;
}

.hero-search {
    width: min(100%, 560px);
    margin-top: 28px;
    display: flex;
    padding: 6px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 18px;
    color: var(--white);
    background: transparent;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.hero-search button,
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--amber-900);
    font-weight: 900;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.14);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-btn:hover,
.hero-search button:hover {
    transform: translateY(-2px) scale(1.02);
    background: var(--amber-100);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.76);
    color: var(--white);
    font-weight: 900;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.ghost-btn:hover {
    background: var(--white);
    color: var(--amber-900);
    transform: translateY(-2px);
}

.ghost-btn.dark {
    border-color: var(--amber-700);
    color: var(--amber-900);
}

.ghost-btn.dark:hover {
    background: var(--amber-700);
    color: var(--white);
}

.hero-links,
.hero-actions,
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.hero-links a {
    color: var(--amber-100);
    font-weight: 800;
    border-bottom: 1px solid rgba(253, 230, 138, 0.45);
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(28px) scale(0.98);
    transition: opacity 0.55s ease, transform 0.55s ease;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(69, 26, 3, 0.9), rgba(69, 26, 3, 0.55) 45%, rgba(69, 26, 3, 0.15));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 58%;
    min-height: 100%;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h2 {
    margin: 14px 0 12px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-content p {
    margin: 0;
    color: var(--amber-100);
    font-size: 17px;
}

.hero-poster {
    position: absolute;
    right: 34px;
    bottom: 34px;
    z-index: 3;
    width: 180px;
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.68);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

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

.hero-controls {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 22px;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hero-controls button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 24px;
    line-height: 1;
    backdrop-filter: blur(8px);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dots .hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    background: rgba(255, 255, 255, 0.42);
}

.hero-dots .hero-dot.is-active {
    width: 28px;
    background: var(--white);
}

.section {
    padding: 70px 0;
}

.section-light {
    background: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(217, 119, 6, 0.12);
    border-bottom: 1px solid rgba(217, 119, 6, 0.12);
}

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

.section-heading.centered {
    justify-content: center;
    text-align: center;
}

.section-heading h2 {
    margin: 12px 0 6px;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    color: var(--amber-700);
}

.section-heading .eyebrow,
.category-hero .eyebrow,
.page-hero .eyebrow {
    background: var(--amber-100);
    color: var(--amber-700);
}

.section-link {
    min-width: max-content;
    color: var(--amber-700);
    font-weight: 900;
}

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

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

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

.movie-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.movie-grid-featured .card-poster {
    aspect-ratio: 4 / 3;
}

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

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

.play-chip {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--amber-900);
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.movie-card:hover .play-chip {
    opacity: 1;
    transform: translateY(0);
}

.rank-badge,
.mini-rank {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-700));
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(69, 26, 3, 0.22);
}

.rank-badge {
    top: 12px;
    left: 12px;
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
}

.card-body {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.card-body h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.28;
}

.card-body h2 a:hover {
    color: var(--amber-600);
}

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

.card-meta,
.card-tags,
.detail-meta,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-meta span,
.card-tags span,
.detail-meta span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.card-meta span,
.detail-meta span {
    padding: 5px 9px;
    background: var(--amber-50);
    color: var(--amber-700);
}

.card-tags span,
.detail-tags span {
    padding: 5px 9px;
    background: var(--amber-100);
    color: var(--amber-800);
}

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

.category-card {
    position: relative;
    min-height: 210px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

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

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent, rgba(69, 26, 3, 0.86));
}

.category-card span,
.category-card em {
    position: absolute;
    left: 18px;
    right: 18px;
    z-index: 2;
    color: var(--white);
}

.category-card span {
    bottom: 48px;
    font-size: 22px;
    font-weight: 900;
}

.category-card em {
    bottom: 22px;
    color: var(--amber-100);
    font-style: normal;
    font-weight: 700;
}

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

.mini-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.mini-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    background: var(--amber-200);
}

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

.mini-rank {
    top: 6px;
    left: 6px;
    min-width: 25px;
    height: 25px;
    border-radius: 999px;
    font-size: 12px;
}

.mini-info {
    min-width: 0;
}

.mini-info strong {
    display: block;
    line-height: 1.25;
}

.mini-info em {
    display: block;
    margin-top: 6px;
    color: var(--amber-700);
    font-size: 13px;
    font-style: normal;
}

.page-main {
    min-height: 60vh;
}

.page-hero,
.category-hero {
    position: relative;
    padding: 82px 0;
    color: var(--white);
    background: linear-gradient(120deg, var(--amber-900), var(--amber-700), var(--amber-500));
    overflow: hidden;
}

.page-hero::after,
.category-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -110px;
    top: -130px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 64%);
}

.page-hero .container,
.category-hero .container {
    position: relative;
    z-index: 1;
}

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

.category-overview-card {
    position: relative;
    min-height: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-overview-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(69, 26, 3, 0.05), rgba(69, 26, 3, 0.86));
}

.category-overview-card strong,
.category-overview-card em {
    position: absolute;
    left: 22px;
    right: 22px;
    z-index: 2;
    color: var(--white);
}

.category-overview-card strong {
    bottom: 68px;
    font-size: 24px;
}

.category-overview-card em {
    bottom: 26px;
    color: var(--amber-100);
    font-style: normal;
}

.filter-panel {
    display: grid;
    gap: 20px;
}

.filter-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
}

.search-box,
.sort-box {
    display: grid;
    gap: 7px;
    color: var(--amber-800);
    font-weight: 900;
}

.search-box {
    flex: 1;
}

.search-box input,
.sort-box select {
    min-height: 44px;
    border: 1px solid var(--amber-200);
    border-radius: 12px;
    background: var(--white);
    color: var(--amber-900);
    outline: 0;
}

.search-box input {
    width: 100%;
    padding: 0 14px;
}

.sort-box select {
    padding: 0 12px;
}

.search-box input:focus,
.sort-box select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

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

.category-chip {
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--white);
    color: var(--amber-900);
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(120, 53, 15, 0.08);
}

.category-chip:hover,
.category-chip.is-active {
    background: var(--amber-600);
    color: var(--white);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--amber-950);
}

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

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

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(69, 26, 3, 0.92), rgba(69, 26, 3, 0.78), rgba(69, 26, 3, 0.58));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 34px 0 64px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
    color: var(--amber-100);
    font-size: 14px;
    font-weight: 800;
}

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

.detail-intro {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.detail-cover {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.34);
}

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

.detail-copy h1 {
    margin: 16px 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-copy p {
    margin: 0 0 18px;
    max-width: 860px;
    color: var(--amber-100);
    font-size: 19px;
}

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

.detail-main,
.detail-sidebar {
    display: grid;
    gap: 22px;
}

.player-card,
.content-card,
.side-card {
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.player-card {
    overflow: hidden;
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #120a02;
}

.video-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.player-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    border: 0;
    background: radial-gradient(circle at center, rgba(69, 26, 3, 0.22), rgba(0, 0, 0, 0.66));
    color: var(--white);
    text-align: center;
}

.player-layer.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.player-start {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--white);
    color: var(--amber-900);
    font-size: 34px;
    padding-left: 5px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
}

.player-layer strong {
    font-size: 26px;
}

.player-layer em {
    color: var(--amber-100);
    font-style: normal;
    font-weight: 800;
}

.content-card {
    padding: 26px;
}

.content-card h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.content-card p {
    margin: 0;
    color: var(--amber-800);
    line-height: 1.95;
    white-space: pre-line;
}

.detail-sidebar {
    position: sticky;
    top: 92px;
}

.side-card {
    padding: 22px;
}

.brand-side {
    display: grid;
    justify-items: center;
    text-align: center;
}

.brand-side .brand-mark {
    margin-bottom: 12px;
}

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

.brand-side em {
    margin-top: 4px;
    color: var(--amber-700);
    font-style: normal;
    font-weight: 800;
}

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

.info-list p {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
    padding: 13px 14px;
    border-radius: 12px;
    background: var(--amber-50);
}

.info-list span {
    color: var(--amber-700);
    font-weight: 800;
}

.info-list strong,
.info-list a {
    font-weight: 900;
    text-align: right;
}

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

.site-footer {
    margin-top: 40px;
    background: linear-gradient(180deg, var(--amber-900), var(--amber-950));
    color: var(--amber-50);
}

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

.site-footer h2 {
    margin: 0 0 12px;
    color: var(--amber-300);
    font-size: 18px;
}

.site-footer p,
.site-footer a {
    margin: 0;
    color: var(--amber-100);
    font-size: 14px;
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(253, 230, 138, 0.18);
    padding: 18px 16px;
    text-align: center;
    color: var(--amber-200);
    font-size: 14px;
}

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

@media (max-width: 1080px) {
    .hero-shell {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-stage {
        height: 480px;
    }

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

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

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

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

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

    .detail-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

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

    .header-inner {
        height: 64px;
    }

    .brand-title {
        font-size: 17px;
    }

    .hero-shell {
        min-height: auto;
        padding: 48px 0 54px;
    }

    .hero-search {
        border-radius: 20px;
        flex-direction: column;
        padding: 8px;
    }

    .hero-search input {
        min-height: 46px;
    }

    .hero-stage {
        height: 560px;
    }

    .hero-content {
        width: 100%;
        padding: 28px;
        justify-content: flex-start;
        padding-top: 54px;
    }

    .hero-poster {
        width: 142px;
        right: 24px;
        bottom: 72px;
    }

    .hero-controls {
        bottom: 18px;
    }

    .section {
        padding: 48px 0;
    }

    .section-heading,
    .filter-row {
        align-items: stretch;
        flex-direction: column;
    }

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

    .card-body {
        padding: 14px;
    }

    .card-body h2 {
        font-size: 16px;
    }

    .mini-card {
        grid-template-columns: 60px minmax(0, 1fr);
        padding: 10px;
    }

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

    .detail-cover {
        width: min(72vw, 260px);
    }

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

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

    .movie-grid,
    .movie-grid-featured,
    .compact-grid,
    .category-grid,
    .category-overview-grid,
    .mini-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        height: 520px;
    }

    .hero-poster {
        display: none;
    }

    .detail-copy h1,
    .hero-copy h1,
    .page-hero h1,
    .category-hero h1 {
        font-size: 34px;
    }
}
