:root {
    --stone-50: #f8f7f4;
    --stone-100: #efede6;
    --stone-200: #ddd9cc;
    --stone-300: #c5bfad;
    --stone-500: #998d73;
    --stone-600: #8b7d67;
    --stone-700: #746957;
    --earth-100: #ede3d9;
    --earth-600: #9b5f3c;
    --earth-700: #814e34;
    --earth-800: #6a4130;
    --earth-900: #573729;
    --bronze-100: #f1ede3;
    --bronze-300: #d0bd9f;
    --bronze-500: #a68558;
    --bronze-600: #98724c;
    --bronze-700: #7e5d41;
    --clay-100: #f0ebe6;
    --clay-600: #8d6850;
    --white: #ffffff;
    --black: #000000;
    --shadow-soft: 0 18px 45px rgba(87, 55, 41, 0.14);
    --shadow-card: 0 12px 30px rgba(87, 55, 41, 0.10);
    --radius-lg: 18px;
    --radius-xl: 26px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(106, 65, 48, 0.96);
    color: var(--stone-50);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.nav-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 72px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand {
    font-size: 24px;
    white-space: nowrap;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    color: var(--earth-900);
    background: linear-gradient(135deg, var(--bronze-300), var(--bronze-500));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    font-size: 14px;
}

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

.nav-link {
    color: var(--stone-100);
    font-size: 15px;
    font-weight: 650;
    opacity: 0.92;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--bronze-300);
    opacity: 1;
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
}

.nav-search input {
    width: 210px;
    border: 0;
    outline: 0;
    color: var(--stone-50);
    background: transparent;
    padding: 8px 8px 8px 12px;
}

.nav-search input::placeholder {
    color: rgba(248, 247, 244, 0.72);
}

.nav-search button {
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--earth-900);
    background: var(--bronze-300);
    font-weight: 800;
}

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

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 4px;
    background: var(--stone-50);
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--earth-800);
}

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

.mobile-panel-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-block: 14px 18px;
}

.mobile-link {
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--stone-100);
    background: rgba(255, 255, 255, 0.08);
}

.mobile-link.is-active,
.mobile-link:hover {
    color: var(--bronze-300);
    background: rgba(255, 255, 255, 0.14);
}

.hero-slider {
    position: relative;
    min-height: 76vh;
    overflow: hidden;
    background: var(--earth-900);
}

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

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

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

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

img.is-missing {
    opacity: 0;
}

.hero-bg::before,
.detail-hero-bg::before,
.movie-cover::before,
.category-card::before,
.category-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--earth-800), var(--bronze-700));
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 35%, rgba(166, 133, 88, 0.34), transparent 30%),
        linear-gradient(90deg, rgba(87, 55, 41, 0.96) 0%, rgba(87, 55, 41, 0.84) 46%, rgba(87, 55, 41, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 76vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 52px;
    padding-block: 84px 106px;
}

.hero-copy {
    max-width: 760px;
    color: var(--white);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--bronze-300);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.hero-summary {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--stone-200);
    font-size: clamp(17px, 2vw, 21px);
}

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

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

.hero-tags span,
.detail-tags span,
.tag-row span,
.detail-categories a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
}

.hero-tags span {
    color: var(--stone-50);
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-actions,
.detail-copy .btn {
    margin-top: 28px;
}

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

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

.btn-primary {
    color: var(--earth-900);
    background: linear-gradient(135deg, var(--bronze-300), var(--bronze-500));
    box-shadow: 0 12px 28px rgba(166, 133, 88, 0.36);
}

.btn-secondary {
    color: var(--white);
    background: var(--earth-700);
}

.btn-ghost {
    color: var(--stone-50);
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.10);
    margin-left: 10px;
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--earth-800), var(--bronze-700));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    transform: rotate(1deg);
}

.hero-poster img,
.movie-cover img,
.category-card img,
.detail-poster img,
.ranking-row img,
.category-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 9px 13px;
    color: var(--white);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 800;
}

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

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

.hero-dot {
    width: 36px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.30);
}

.hero-dot.is-active {
    background: var(--bronze-300);
}

.hero-arrows {
    display: flex;
    gap: 10px;
}

.hero-arrows button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    font-size: 30px;
    line-height: 1;
}

.section {
    padding-block: 72px;
}

.section-compact-top {
    padding-top: 18px;
}

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

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

.section-heading h2 {
    margin: 0;
    color: var(--earth-900);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

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

.section-action {
    color: var(--bronze-700);
    font-weight: 850;
}

.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));
}

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

.movie-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 18px;
    scroll-snap-type: x proximity;
}

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(221, 217, 204, 0.80);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--earth-800), var(--bronze-700));
}

.movie-card--large .movie-cover,
.movie-card--wide .movie-cover {
    aspect-ratio: 16 / 9;
}

.movie-cover img {
    transition: transform 0.35s ease;
}

.movie-card:hover .movie-cover img {
    transform: scale(1.06);
}

.movie-score,
.movie-play {
    position: absolute;
    z-index: 2;
    color: var(--white);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(12px);
    font-weight: 850;
}

.movie-score {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    color: var(--bronze-300);
}

.movie-play {
    right: 12px;
    bottom: 12px;
    padding: 7px 11px;
    font-size: 13px;
}

.movie-body {
    padding: 18px;
}

.movie-body h3 {
    margin: 0;
    color: var(--earth-900);
    font-size: 18px;
    line-height: 1.28;
}

.movie-meta {
    margin: 8px 0 0;
    color: var(--stone-600);
    font-size: 13px;
}

.movie-line {
    display: -webkit-box;
    min-height: 48px;
    margin: 10px 0 14px;
    overflow: hidden;
    color: var(--stone-700);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
}

.tag-row span {
    color: var(--bronze-700);
    background: var(--bronze-100);
}

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

.category-card {
    position: relative;
    display: grid;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--earth-800);
    box-shadow: var(--shadow-card);
}

.category-card img {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

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

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(87, 55, 41, 0.18), rgba(87, 55, 41, 0.92));
}

.category-card div {
    position: relative;
    z-index: 1;
    align-self: end;
    padding: 22px;
    color: var(--white);
}

.category-card h3 {
    margin: 0;
    font-size: 24px;
}

.category-card p {
    min-height: 46px;
    margin: 8px 0 12px;
    color: var(--stone-200);
    font-size: 14px;
}

.category-card span,
.category-count {
    color: var(--bronze-300);
    font-size: 13px;
    font-weight: 850;
}

.editorial-band {
    color: var(--white);
    background:
        radial-gradient(circle at 84% 0%, rgba(166, 133, 88, 0.30), transparent 32%),
        linear-gradient(135deg, var(--earth-900), var(--earth-800));
}

.editorial-grid {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.editorial-grid h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.editorial-grid p:not(.eyebrow) {
    color: var(--stone-200);
}

.ranking-list,
.ranking-table {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-list a,
.ranking-row a {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--stone-200);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 20px rgba(87, 55, 41, 0.06);
}

.rank-index {
    color: var(--bronze-600);
    font-weight: 900;
    font-size: 22px;
}

.rank-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 850;
}

.rank-meta,
.ranking-row-main em {
    color: var(--stone-600);
    font-size: 13px;
    font-style: normal;
}

.ranking-list strong,
.ranking-row b {
    color: var(--earth-800);
    font-size: 20px;
}

.page-hero {
    color: var(--white);
    background:
        radial-gradient(circle at 78% 20%, rgba(166, 133, 88, 0.36), transparent 30%),
        linear-gradient(135deg, var(--earth-900), var(--earth-700));
    padding-block: 86px;
}

.page-hero--compact {
    padding-block: 62px;
}

.page-hero--search {
    background:
        radial-gradient(circle at 20% 20%, rgba(166, 133, 88, 0.36), transparent 28%),
        linear-gradient(135deg, var(--earth-800), var(--bronze-700));
}

.page-hero p:last-child {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--stone-200);
    font-size: 19px;
}

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

.category-overview-card {
    overflow: hidden;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.category-preview {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: 150px;
    overflow: hidden;
    background: var(--earth-800);
}

.category-preview img {
    height: 150px;
}

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

.category-overview-body h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.filter-toolbar {
    display: grid;
    grid-template-columns: 150px repeat(4, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.filter-title {
    color: var(--earth-900);
    font-weight: 900;
    font-size: 20px;
}

.filter-toolbar label,
.search-page-form label {
    display: grid;
    gap: 6px;
}

.filter-toolbar label span,
.search-page-form label span {
    color: var(--stone-600);
    font-size: 12px;
    font-weight: 850;
}

.filter-toolbar input,
.filter-toolbar select,
.search-page-form input {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--stone-200);
    border-radius: 12px;
    outline: none;
    color: var(--earth-900);
    background: var(--stone-50);
    padding: 9px 12px;
}

.filter-toolbar input:focus,
.filter-toolbar select:focus,
.search-page-form input:focus {
    border-color: var(--bronze-500);
    box-shadow: 0 0 0 4px rgba(166, 133, 88, 0.14);
}

.filter-toolbar button {
    min-height: 42px;
    border: 0;
    border-radius: 12px;
    color: var(--white);
    background: var(--earth-700);
    padding: 10px 16px;
    font-weight: 850;
}

.filter-count {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--stone-600);
    font-size: 13px;
}

.search-panel {
    margin-bottom: 18px;
    padding: 20px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--earth-100), var(--bronze-100));
}

.search-page-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

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

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

.detail-hero-bg div {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(87, 55, 41, 0.98), rgba(87, 55, 41, 0.82), rgba(87, 55, 41, 0.45));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    min-height: 560px;
    padding-block: 72px;
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: var(--radius-xl);
    background: var(--earth-800);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.detail-one-line {
    max-width: 820px;
    margin: 22px 0 0;
    color: var(--stone-200);
    font-size: 21px;
}

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

.detail-tags span,
.detail-categories a {
    color: var(--stone-50);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.11);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    padding-block: 64px 26px;
}

.player-card,
.detail-meta-card,
.text-card {
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.player-card {
    overflow: hidden;
}

.player-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
}

.player-heading h2,
.detail-meta-card h2,
.text-card h2 {
    margin: 0;
    font-size: 24px;
}

.player-heading span {
    color: var(--bronze-700);
    font-weight: 900;
}

.video-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000000;
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.70));
}

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

.play-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 999px;
    color: var(--earth-900);
    background: var(--bronze-300);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
}

.play-overlay strong {
    font-size: 22px;
}

.play-overlay small {
    color: var(--stone-200);
}

.player-status {
    margin: 0;
    padding: 14px 24px 22px;
    color: var(--stone-600);
}

.detail-meta-card {
    padding: 24px;
}

.detail-meta-card dl {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 10px 14px;
    margin: 18px 0 0;
}

.detail-meta-card dt {
    color: var(--stone-600);
    font-weight: 800;
}

.detail-meta-card dd {
    margin: 0;
}

.detail-text-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-top: 30px;
}

.text-card {
    padding: 28px;
}

.text-card p {
    margin: 14px 0 0;
    color: var(--stone-700);
    white-space: pre-line;
}

.ranking-row a {
    grid-template-columns: 64px 72px minmax(0, 1fr) auto 64px;
}

.ranking-row img {
    width: 72px;
    height: 50px;
    border-radius: 10px;
    background: var(--earth-800);
}

.ranking-row-main {
    display: grid;
    min-width: 0;
}

.ranking-row-main strong,
.ranking-row-main em {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ranking-heat {
    color: var(--stone-600);
    font-size: 13px;
}

.sitemap-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sitemap-movies {
    grid-column: 1 / -1;
}

.sitemap-list {
    margin: 14px 0 0;
    padding-left: 20px;
}

.sitemap-list--columns {
    columns: 4 220px;
}

.site-footer {
    color: var(--stone-200);
    background: var(--earth-900);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-block: 48px;
}

.footer-brand {
    color: var(--bronze-300);
    font-size: 22px;
}

.site-footer p {
    max-width: 520px;
    color: var(--stone-300);
}

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

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

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

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

.footer-bottom p {
    max-width: none;
    margin: 0;
    font-size: 13px;
}

[data-movie-card].is-filtered-out {
    display: none;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 36px;
    border: 1px dashed var(--stone-300);
    border-radius: var(--radius-lg);
    color: var(--stone-700);
    text-align: center;
    background: var(--white);
}

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

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

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

    .hero-poster {
        display: none;
    }

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

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

    .filter-title,
    .filter-count {
        grid-column: 1 / -1;
    }

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

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

    .footer-grid,
    .category-overview-grid,
    .detail-text-section,
    .sitemap-layout {
        grid-template-columns: 1fr;
    }

    .sitemap-movies {
        grid-column: auto;
    }
}

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

    .brand {
        font-size: 19px;
    }

    .brand-mark {
        width: 32px;
        height: 32px;
    }

    .mobile-panel-inner,
    .movie-grid,
    .category-grid,
    .movie-grid--featured,
    .movie-grid--compact,
    .filter-toolbar,
    .search-page-form {
        grid-template-columns: 1fr;
    }

    .hero-slider,
    .hero-content {
        min-height: 680px;
    }

    .hero-content {
        padding-block: 64px 120px;
    }

    .hero-actions {
        display: grid;
        gap: 10px;
    }

    .btn-ghost {
        margin-left: 0;
    }

    .section {
        padding-block: 48px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .movie-rail {
        grid-auto-columns: 82%;
    }

    .detail-hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .detail-poster {
        width: 70%;
        max-width: 240px;
    }

    .ranking-list a,
    .ranking-row a {
        grid-template-columns: 48px minmax(0, 1fr) auto;
    }

    .ranking-row img,
    .ranking-heat,
    .rank-meta {
        display: none;
    }

    .hero-controls {
        align-items: end;
    }
}
