
:root {
    color-scheme: light;
    --color-ink: #2b1606;
    --color-muted: #7b5a2f;
    --color-soft: #fff8ea;
    --color-paper: #ffffff;
    --color-amber: #d97706;
    --color-amber-dark: #92400e;
    --color-orange: #ea580c;
    --color-brown: #451a03;
    --color-gold: #facc15;
    --shadow-soft: 0 22px 60px rgba(120, 53, 15, 0.18);
    --shadow-card: 0 18px 38px rgba(146, 64, 14, 0.14);
    --radius-large: 28px;
    --radius-card: 22px;
    --header-height: 78px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-ink);
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, 0.34), transparent 28rem),
        linear-gradient(135deg, #fff7ed 0%, #fffbeb 44%, #fff1d6 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(115deg, rgba(120, 53, 15, 0.96), rgba(194, 65, 12, 0.96) 48%, rgba(69, 26, 3, 0.98));
    color: #fff7ed;
    box-shadow: 0 14px 38px rgba(69, 26, 3, 0.2);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--color-brown);
    background: linear-gradient(135deg, #fef3c7, #f59e0b);
    font-size: 24px;
    font-weight: 900;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.35), 0 12px 24px rgba(69, 26, 3, 0.24);
}

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

.brand-text strong {
    font-size: 24px;
    letter-spacing: 0.04em;
}

.brand-text small {
    margin-top: 5px;
    color: #fde68a;
    font-size: 12px;
}

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

.nav-link {
    padding: 10px 13px;
    border-radius: 999px;
    color: #fffbeb;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-brown);
    background: #fef3c7;
    transform: translateY(-1px);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 270px;
}

.header-search input,
.mobile-panel input,
.large-search input,
.inline-search input,
.search-tools input,
.search-tools select {
    border: 1px solid rgba(217, 119, 6, 0.28);
    outline: none;
    border-radius: 999px;
    color: var(--color-ink);
    background: rgba(255, 251, 235, 0.92);
    transition: border 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-search input {
    width: 190px;
    padding: 10px 14px;
}

.header-search input:focus,
.mobile-panel input:focus,
.large-search input:focus,
.inline-search input:focus,
.search-tools input:focus,
.search-tools select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.22);
    background: #ffffff;
}

.header-search button,
.mobile-panel button,
.large-search button {
    border: 0;
    border-radius: 999px;
    color: #431407;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-search button:hover,
.mobile-panel button:hover,
.large-search button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(120, 53, 15, 0.28);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 247, 237, 0.12);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: #fffbeb;
}

.mobile-panel {
    display: none;
    padding: 0 16px 18px;
}

.mobile-panel.open {
    display: grid;
    gap: 12px;
}

.mobile-panel a {
    padding: 10px 0;
    color: #fff7ed;
    font-weight: 700;
}

.mobile-panel form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.mobile-panel input {
    min-width: 0;
    padding: 11px 14px;
}

.hero-carousel {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #451a03;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.7s ease, visibility 0.7s ease, transform 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(69, 26, 3, 0.88), rgba(120, 53, 15, 0.56), rgba(69, 26, 3, 0.78)),
        radial-gradient(circle at 70% 30%, rgba(250, 204, 21, 0.26), transparent 22rem);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding-block: 104px 124px;
    color: #fff7ed;
}

.eyebrow {
    margin: 0 0 14px;
    color: #facc15;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-content h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.hero-content h1 {
    max-width: 720px;
    font-size: clamp(42px, 7.5vw, 88px);
    line-height: 0.98;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.hero-summary {
    max-width: 690px;
    margin: 24px 0 0;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.8;
    color: #ffedd5;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #7c2d12;
    background: #fef3c7;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags {
    margin-top: 22px;
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
    color: #431407;
    background: linear-gradient(135deg, #fef3c7, #f59e0b);
    box-shadow: 0 18px 34px rgba(217, 119, 6, 0.28);
}

.ghost-button {
    color: #fff7ed;
    border: 1px solid rgba(255, 237, 213, 0.55);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(69, 26, 3, 0.22);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 4;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.hero-arrow,
.hero-dot {
    pointer-events: auto;
    border: 0;
    cursor: pointer;
}

.hero-arrow {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.18);
    font-size: 34px;
    line-height: 1;
    backdrop-filter: blur(12px);
}

.hero-dots {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(69, 26, 3, 0.38);
    backdrop-filter: blur(12px);
}

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

.hero-dot.active {
    width: 28px;
    background: #facc15;
}

.home-search-band {
    margin-top: -1px;
    padding: 34px 0;
    background: linear-gradient(90deg, #78350f, #c2410c, #92400e);
    color: #fff7ed;
}

.search-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 28px;
    align-items: center;
}

.search-band-inner h2 {
    margin: 0 0 10px;
    font-size: clamp(25px, 4vw, 40px);
}

.search-band-inner p {
    margin: 0;
    color: #ffedd5;
    line-height: 1.8;
}

.large-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.large-search input {
    min-width: 0;
    padding: 15px 18px;
}

.section-block {
    padding-block: 62px;
}

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

.section-heading.compact {
    align-items: center;
}

.section-heading span,
.ranking-head span {
    display: block;
    color: var(--color-amber);
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 12px;
}

.section-heading h2,
.ranking-head h2,
.simple-content h2 {
    margin: 6px 0 0;
    color: var(--color-brown);
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.04em;
}

.section-heading a {
    color: var(--color-amber-dark);
    font-weight: 900;
}

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

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

.catalog-grid {
    align-items: stretch;
}

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(217, 119, 6, 0.12);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(217, 119, 6, 0.34);
    box-shadow: 0 24px 54px rgba(146, 64, 14, 0.24);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #92400e, #f59e0b);
}

.movie-card-featured .poster-link {
    aspect-ratio: 16 / 10;
}

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

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

.poster-year,
.poster-type {
    position: absolute;
    top: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #431407;
    background: rgba(254, 243, 199, 0.94);
    font-size: 12px;
    font-weight: 900;
}

.poster-year {
    right: 12px;
}

.poster-type {
    left: 12px;
}

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

.movie-card-kicker {
    margin-bottom: 8px;
    color: var(--color-amber-dark);
    font-size: 12px;
    font-weight: 900;
}

.movie-card h2 {
    margin: 0;
    color: var(--color-brown);
    font-size: 20px;
    line-height: 1.25;
}

.movie-card h2 a:hover {
    color: var(--color-orange);
}

.movie-card-genre {
    margin: 9px 0 0;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
}

.movie-card-desc {
    margin: 11px 0 14px;
    color: #5f4323;
    line-height: 1.75;
    font-size: 14px;
}

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

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

.category-chip,
.category-overview-card {
    border: 1px solid rgba(217, 119, 6, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.category-chip {
    display: block;
    padding: 22px;
}

.category-chip:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 119, 6, 0.38);
    box-shadow: 0 22px 48px rgba(146, 64, 14, 0.18);
}

.category-chip strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-brown);
    font-size: 21px;
}

.category-chip span {
    color: var(--color-muted);
    line-height: 1.7;
    font-size: 14px;
}

.ranking-panel {
    border: 1px solid rgba(217, 119, 6, 0.15);
    border-radius: var(--radius-large);
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.92));
    box-shadow: var(--shadow-soft);
}

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

.rank-row {
    display: grid;
    grid-template-columns: auto 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border-radius: 18px;
    padding: 10px;
    background: rgba(255, 251, 235, 0.78);
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
    transform: translateX(3px);
    background: #fef3c7;
}

.rank-number {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #431407;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    font-size: 13px;
    font-weight: 950;
}

.rank-row.no-rank {
    grid-template-columns: 58px minmax(0, 1fr);
}

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

.rank-row strong {
    display: block;
    color: var(--color-brown);
    line-height: 1.35;
}

.rank-row small {
    display: block;
    margin-top: 4px;
    color: var(--color-muted);
    line-height: 1.45;
}

.page-main {
    padding-block: 36px 70px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
    border-radius: var(--radius-large);
    padding: clamp(34px, 6vw, 70px);
    box-shadow: var(--shadow-soft);
}

.soft-hero,
.category-hero {
    background:
        radial-gradient(circle at 82% 18%, rgba(250, 204, 21, 0.34), transparent 20rem),
        linear-gradient(135deg, rgba(120, 53, 15, 0.96), rgba(234, 88, 12, 0.92));
    color: #fff7ed;
}

.page-hero h1 {
    font-size: clamp(38px, 7vw, 72px);
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: #ffedd5;
    font-size: 18px;
    line-height: 1.8;
}

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

.category-overview-card {
    overflow: hidden;
}

.category-overview-main {
    display: block;
    padding: 26px;
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.9), rgba(254, 243, 199, 0.72));
}

.category-overview-main span {
    color: var(--color-amber-dark);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.category-overview-main h2 {
    margin: 9px 0;
    color: var(--color-brown);
    font-size: 27px;
}

.category-overview-main p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.75;
}

.category-sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 18px 22px 22px;
}

.category-sample-links a {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--color-amber-dark);
    background: #fff7ed;
    font-size: 13px;
    font-weight: 800;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 20px;
    color: var(--color-muted);
    font-weight: 800;
}

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

.filter-panel,
.search-tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
    border: 1px solid rgba(217, 119, 6, 0.14);
    border-radius: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-card);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-button {
    border: 0;
    border-radius: 999px;
    padding: 10px 15px;
    color: var(--color-amber-dark);
    background: #fef3c7;
    font-weight: 900;
    cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
    color: #fff7ed;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
}

.inline-search,
.search-tools label {
    display: grid;
    gap: 8px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 900;
}

.inline-search input,
.search-tools input,
.search-tools select {
    min-width: 250px;
    padding: 12px 15px;
}

.search-tools {
    justify-content: start;
}

.empty-state {
    margin: 30px 0;
    border-radius: 22px;
    padding: 26px;
    text-align: center;
    color: var(--color-muted);
    background: rgba(255, 255, 255, 0.78);
    font-weight: 900;
}

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

.sticky-ranking {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.detail-hero {
    position: relative;
    isolation: isolate;
    min-height: 560px;
    display: grid;
    align-items: end;
    color: #fff7ed;
    background: #451a03;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--detail-poster);
    background-size: cover;
    background-position: center;
    filter: blur(18px) saturate(1.08);
    transform: scale(1.08);
}

.detail-hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(69, 26, 3, 0.92), rgba(120, 53, 15, 0.68), rgba(69, 26, 3, 0.88)),
        radial-gradient(circle at 82% 20%, rgba(250, 204, 21, 0.24), transparent 22rem);
}

.detail-hero-inner {
    padding-block: 34px 58px;
}

.detail-breadcrumb {
    color: #fed7aa;
}

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

.detail-poster {
    width: 230px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
}

.detail-copy h1 {
    max-width: 860px;
    font-size: clamp(40px, 7vw, 82px);
    line-height: 1;
}

.detail-one-line {
    max-width: 840px;
    margin: 22px 0 0;
    color: #ffedd5;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.8;
}

.detail-tags {
    margin-top: 18px;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    margin-top: 44px;
}

.player-card,
.detail-meta-card,
.detail-text-section article,
.simple-content {
    border: 1px solid rgba(217, 119, 6, 0.14);
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.player-card,
.detail-meta-card {
    padding: 22px;
}

.player-card h2,
.detail-meta-card h2,
.detail-text-section h2 {
    margin: 0 0 18px;
    color: var(--color-brown);
    font-size: 28px;
}

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000000;
    aspect-ratio: 16 / 9;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000000;
}

.player-start {
    position: absolute;
    inset: 0;
    border: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.54));
}

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

.player-start span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #431407;
    background: linear-gradient(135deg, #fef3c7, #f59e0b);
    font-size: 34px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease;
}

.player-start:hover span {
    transform: scale(1.08);
}

.detail-meta-card dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.detail-meta-card div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(217, 119, 6, 0.12);
}

.detail-meta-card dt {
    color: var(--color-muted);
    font-weight: 900;
}

.detail-meta-card dd {
    margin: 0;
    color: var(--color-brown);
    font-weight: 800;
    line-height: 1.6;
}

.detail-meta-card a {
    color: var(--color-orange);
}

.detail-text-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 28px;
}

.detail-text-section article,
.simple-content {
    padding: 28px;
}

.detail-text-section p,
.simple-content p {
    margin: 0;
    color: #573b1d;
    font-size: 17px;
    line-height: 2;
}

.wide-rank-list .rank-row {
    grid-template-columns: 74px minmax(0, 1fr);
}

.wide-rank-list .rank-row .rank-number {
    display: none;
}

.site-footer {
    color: #ffedd5;
    background: linear-gradient(135deg, #451a03, #7c2d12 55%, #431407);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 30px;
    padding-block: 48px;
}

.footer-logo {
    margin-bottom: 14px;
    color: #fef3c7;
    font-size: 26px;
    font-weight: 950;
}

.site-footer p {
    margin: 0;
    color: #fed7aa;
    line-height: 1.9;
}

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

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

.site-footer a {
    color: #fed7aa;
}

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

.footer-bottom {
    border-top: 1px solid rgba(254, 215, 170, 0.16);
    padding: 18px;
    text-align: center;
    color: #fed7aa;
}

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

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

    .split-layout,
    .ranking-layout,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .sticky-ranking {
        position: static;
    }
}

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

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .hero-carousel {
        min-height: 590px;
    }

    .search-band-inner,
    .large-search,
    .detail-intro,
    .detail-text-section,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-poster {
        width: 190px;
    }

    .detail-intro {
        align-items: start;
    }
}

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

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

    .hero-carousel {
        min-height: 560px;
    }

    .hero-content {
        padding-block: 72px 118px;
    }

    .hero-controls {
        bottom: 18px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

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

    .filter-panel,
    .search-tools {
        align-items: stretch;
    }

    .inline-search input,
    .search-tools input,
    .search-tools select {
        min-width: 100%;
    }

    .detail-meta-card div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
