:root {
    --bg: #fff7ed;
    --surface: #ffffff;
    --surface-soft: #fff1e8;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #fed7aa;
    --orange: #f97316;
    --pink: #ec4899;
    --amber: #f59e0b;
    --shadow: 0 18px 55px rgba(249, 115, 22, 0.15);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 8% 0%, rgba(249, 115, 22, 0.12), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(236, 72, 153, 0.10), transparent 26%),
        var(--bg);
    color: var(--text);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 247, 237, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(254, 215, 170, 0.75);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-weight: 800;
}

.brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.24);
}

.brand-text {
    font-size: 22px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

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

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #4b5563;
    font-weight: 650;
    transition: 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.20);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.global-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 1 300px;
    padding: 6px;
    border: 1px solid rgba(251, 146, 60, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
}

.global-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 8px 10px;
    background: transparent;
    color: var(--text);
}

.global-search button {
    border: 0;
    padding: 8px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    font-weight: 700;
}

.search-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(420px, calc(100vw - 40px));
    max-height: 520px;
    overflow: auto;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(251, 146, 60, 0.25);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.search-panel.is-open {
    display: grid;
    gap: 8px;
}

.search-result {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 10px;
    padding: 8px;
    border-radius: 14px;
    transition: 0.2s ease;
}

.search-result:hover {
    background: var(--surface-soft);
}

.search-result img {
    width: 58px;
    height: 76px;
    border-radius: 10px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(236, 72, 153, 0.2));
}

.search-result strong {
    display: block;
    margin-bottom: 4px;
}

.search-result span {
    color: var(--muted);
    font-size: 13px;
}

.hero-carousel {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: #111827;
}

.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-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: blur(1px) saturate(1.1);
    opacity: 0.55;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.48), rgba(236, 72, 153, 0.18)),
        radial-gradient(circle at 24% 24%, rgba(249, 115, 22, 0.34), transparent 24%);
}

.hero-inner {
    position: relative;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 54px;
    padding: 96px 0 72px;
}

.hero-copy {
    color: #ffffff;
}

.hero-badges,
.detail-meta,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.hero-badges span,
.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 14px;
}

.hero-copy h1 {
    margin: 20px 0 12px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-one-line {
    max-width: 760px;
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 700;
}

.hero-summary {
    max-width: 760px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

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

.primary-btn,
.secondary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.24s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    box-shadow: 0 18px 36px rgba(236, 72, 153, 0.28);
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px);
}

.primary-btn.small {
    min-height: 38px;
    padding: 0 18px;
}

.secondary-btn {
    color: var(--orange);
    background: #ffffff;
    border: 1px solid rgba(249, 115, 22, 0.25);
}

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

.ghost-btn.light {
    color: #ffffff;
}

.hero-poster {
    display: block;
    padding: 12px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 316px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 24px;
    background: linear-gradient(135deg, #fed7aa, #fbcfe8);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(12px);
    font-size: 36px;
    line-height: 1;
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

.hero-dot.is-active {
    width: 28px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.stats-strip {
    margin-top: -36px;
    position: relative;
    z-index: 8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 18px;
    border-radius: 28px;
    border: 1px solid rgba(251, 146, 60, 0.28);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.stats-grid div {
    padding: 18px;
    border-radius: 20px;
    background: var(--surface-soft);
}

.stats-grid strong {
    display: block;
    font-size: 32px;
    color: var(--orange);
}

.stats-grid span {
    color: var(--muted);
}

.category-strip {
    padding: 34px 0 0;
}

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

.category-chip {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(251, 146, 60, 0.24);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.08);
    transition: 0.22s ease;
}

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

.category-chip span {
    display: block;
    font-weight: 800;
}

.category-chip small {
    color: var(--muted);
}

.section {
    padding: 72px 0;
}

.soft-bg {
    background: rgba(255, 255, 255, 0.42);
}

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

.section-kicker {
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.detail-article h2,
.detail-side h2,
.map-title {
    margin: 0;
    color: #111827;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 46px);
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(251, 146, 60, 0.18);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 36px rgba(249, 115, 22, 0.10);
    transition: 0.25s ease;
}

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

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #fed7aa, #fbcfe8);
}

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

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

.cover-year,
.rank-badge,
.cover-play {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 850;
}

.cover-year {
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    background: rgba(17, 24, 39, 0.64);
    backdrop-filter: blur(10px);
    font-size: 12px;
}

.rank-badge {
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.cover-play {
    left: 14px;
    bottom: 14px;
    padding: 8px 12px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    opacity: 0;
    transform: translateY(8px);
    transition: 0.22s ease;
}

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

.movie-info {
    padding: 16px;
}

.movie-info h3 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-info h3 a:hover {
    color: var(--orange);
}

.movie-meta {
    color: var(--muted);
    font-size: 13px;
}

.movie-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #d1d5db;
}

.movie-info p {
    min-height: 48px;
    margin: 10px 0 12px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

.movie-tags,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.mini-tag,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    color: #c2410c;
    background: #ffedd5;
    font-size: 12px;
    font-weight: 700;
}

.tag {
    min-height: 34px;
    padding: 0 13px;
    font-size: 14px;
}

.rank-preview {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 24px;
}

.rank-main-card {
    min-height: 340px;
    padding: 34px;
    border-radius: 30px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.96), rgba(236, 72, 153, 0.92)),
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.22), transparent 30%);
    box-shadow: var(--shadow);
}

.rank-label {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 850;
}

.rank-main-card h3 {
    margin: 26px 0 14px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
}

.rank-main-card p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
}

.rank-list,
.ranking-table {
    display: grid;
    gap: 10px;
}

.rank-list a,
.ranking-row {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.09);
    transition: 0.2s ease;
}

.ranking-row {
    grid-template-columns: 54px 1fr 150px 90px;
}

.rank-list a:hover,
.ranking-row:hover {
    transform: translateX(4px);
    color: var(--orange);
}

.rank-list span,
.ranking-row span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    font-weight: 900;
}

.rank-list em,
.ranking-row em {
    color: var(--muted);
    font-style: normal;
}

.ranking-row b {
    color: var(--amber);
}

.category-preview-block {
    margin-bottom: 46px;
}

.category-preview-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 18px;
}

.category-preview-head h3 {
    margin: 0 0 4px;
    font-size: 26px;
}

.category-preview-head p {
    margin: 0;
    color: var(--muted);
}

.category-preview-head a {
    color: var(--orange);
    font-weight: 800;
}

.page-hero {
    padding: 88px 0 64px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(249, 115, 22, 0.70), rgba(236, 72, 153, 0.80)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 30%);
}

.page-hero.small-hero {
    padding: 72px 0 58px;
}

.page-hero h1 {
    max-width: 850px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 60px);
}

.page-hero p {
    max-width: 780px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.7;
}

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

.category-card {
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card-link {
    display: grid;
    grid-template-columns: 230px 1fr;
    min-height: 210px;
}

.category-posters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 12px;
    background: var(--surface-soft);
}

.category-posters img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, #fed7aa, #fbcfe8);
}

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

.category-card-body span {
    color: var(--orange);
    font-weight: 850;
}

.category-card-body h2 {
    margin: 10px 0;
    font-size: 30px;
}

.category-card-body p {
    color: var(--muted);
    line-height: 1.7;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px;
    gap: 12px;
    margin-bottom: 26px;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.10);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(251, 146, 60, 0.25);
    border-radius: 14px;
    padding: 0 14px;
    color: var(--text);
    background: #fffaf5;
    outline: none;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: blur(2px) saturate(1.08);
    transform: scale(1.04);
}

.detail-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.62), rgba(236, 72, 153, 0.22)),
        radial-gradient(circle at 18% 14%, rgba(249, 115, 22, 0.30), transparent 30%);
}

.detail-hero-inner {
    position: relative;
    min-height: 620px;
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 44px;
    align-items: center;
    padding: 78px 0;
}

.detail-poster {
    display: block;
    padding: 10px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.detail-poster img {
    width: 270px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 20px;
    background: linear-gradient(135deg, #fed7aa, #fbcfe8);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a:hover {
    color: #ffffff;
}

.detail-copy h1 {
    color: #ffffff;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
}

.detail-copy p {
    max-width: 830px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.9;
    font-size: 18px;
}

.player-section {
    padding-bottom: 28px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #050505;
    box-shadow: var(--shadow);
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #050505;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background:
        radial-gradient(circle at center, rgba(236, 72, 153, 0.28), rgba(0, 0, 0, 0.68)),
        linear-gradient(135deg, rgba(249, 115, 22, 0.28), rgba(17, 24, 39, 0.35));
    cursor: pointer;
}

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

.play-circle {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.32);
    font-size: 30px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
}

.detail-article,
.detail-side {
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(249, 115, 22, 0.09);
}

.detail-article {
    padding: 34px;
}

.detail-article h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 28px;
}

.detail-article h2:not(:first-child) {
    margin-top: 32px;
}

.detail-article p {
    color: #374151;
    line-height: 2;
}

.detail-side {
    align-self: start;
    padding: 26px;
}

.detail-side h2 {
    font-size: 24px;
    margin-bottom: 18px;
}

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

.detail-side dt {
    color: var(--muted);
    font-size: 13px;
}

.detail-side dd {
    margin: 2px 0 0;
    font-weight: 750;
}

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

.sitemap-links {
    display: grid;
    gap: 10px;
}

.main-map {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 42px;
}

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

.sitemap-links a {
    padding: 14px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.08);
    transition: 0.2s ease;
}

.sitemap-links a:hover {
    transform: translateY(-2px);
    color: var(--orange);
}

.sitemap-links span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.map-title {
    margin: 0 0 18px;
    font-size: 30px;
}

.site-footer {
    margin-top: 40px;
    padding: 54px 0 24px;
    border-top: 1px solid rgba(254, 215, 170, 0.8);
    background: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.7fr 1fr;
    gap: 34px;
}

.footer-brand {
    margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
    color: var(--muted);
    line-height: 1.8;
}

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

.site-footer h3 {
    margin: 0 0 14px;
    font-size: 18px;
}

.site-footer div > a,
.footer-links a {
    display: block;
    margin-bottom: 8px;
}

.footer-links {
    columns: 2;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(254, 215, 170, 0.8);
    color: var(--muted);
    text-align: center;
}

.center-actions {
    justify-content: center;
}

.is-filtered-out {
    display: none !important;
}

@media (max-width: 1024px) {
    .header-inner {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
        margin-left: auto;
    }

    .site-nav {
        display: none;
        order: 4;
        width: 100%;
        flex-wrap: wrap;
        margin-left: 0;
    }

    .site-nav.is-open {
        display: flex;
    }

    .global-search {
        order: 3;
        width: 100%;
        flex-basis: 100%;
    }

    .hero-inner,
    .detail-hero-inner,
    .detail-layout,
    .rank-preview,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        gap: 28px;
        padding-top: 120px;
    }

    .hero-poster {
        width: min(300px, 78vw);
    }

    .hero-poster img,
    .detail-poster img {
        width: 100%;
    }

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

    .stats-grid,
    .category-card-grid,
    .main-map {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .brand-text {
        font-size: 19px;
    }

    .hero-carousel,
    .hero-inner,
    .detail-hero,
    .detail-hero-inner {
        min-height: auto;
    }

    .hero-inner,
    .detail-hero-inner {
        padding: 76px 0 56px;
    }

    .hero-arrow {
        display: none;
    }

    .stats-strip {
        margin-top: 0;
        padding-top: 18px;
    }

    .stats-grid,
    .movie-grid,
    .compact-grid,
    .category-chip-grid,
    .category-card-grid,
    .main-map,
    .movie-map {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .category-card-link,
    .filter-bar {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 48px 0;
    }

    .movie-info {
        padding: 12px;
    }

    .movie-info p,
    .movie-tags {
        display: none;
    }

    .ranking-row {
        grid-template-columns: 44px 1fr;
    }

    .ranking-row em,
    .ranking-row b {
        display: none;
    }
}

@media (max-width: 460px) {
    .movie-grid,
    .compact-grid,
    .category-chip-grid,
    .stats-grid,
    .main-map,
    .movie-map {
        grid-template-columns: 1fr;
    }
}
