:root {
    color-scheme: light;
    --bg: #fff7ed;
    --paper: #ffffff;
    --paper-soft: #fffaf5;
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(251, 146, 60, 0.18);
    --orange: #f97316;
    --orange-strong: #ea580c;
    --pink: #ec4899;
    --yellow: #f59e0b;
    --dark: #111827;
    --shadow: 0 20px 45px rgba(124, 45, 18, 0.16);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(251, 146, 60, 0.28), transparent 28rem),
        radial-gradient(circle at 88% 0%, rgba(236, 72, 153, 0.20), transparent 26rem),
        linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #fff7ed 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 28px rgba(124, 45, 18, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.35);
}

.brand-name {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    background: linear-gradient(90deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a,
.category-nav a {
    color: #374151;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover,
.category-nav a:hover,
.category-nav a.is-current {
    color: var(--orange);
}

.header-search {
    position: relative;
    width: min(280px, 28vw);
}

.header-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid rgba(249, 115, 22, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    padding: 12px 16px;
    color: var(--text);
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.header-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: rgba(249, 115, 22, 0.55);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.13);
}

.search-results {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(420px, 88vw);
    max-height: 420px;
    overflow: auto;
    padding: 10px;
    border: 1px solid rgba(249, 115, 22, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.search-results a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 14px;
}

.search-results a:hover {
    background: #fff7ed;
}

.search-results img {
    width: 42px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
    background: #fed7aa;
}

.search-results strong,
.search-results span {
    display: block;
}

.search-results span {
    color: var(--muted);
    font-size: 0.82rem;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #fff7ed;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: var(--orange);
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mobile-nav.is-open {
    display: grid;
}

.mobile-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff7ed;
}

.hero-carousel {
    position: relative;
    min-height: min(82vh, 760px);
    overflow: hidden;
    background: var(--dark);
}

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

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

.hero-bg,
.detail-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.94) 0%, rgba(17, 24, 39, 0.72) 45%, rgba(17, 24, 39, 0.38) 100%),
        var(--hero-image) center / cover no-repeat;
    transform: scale(1.04);
}

.hero-bg::after,
.detail-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(249, 115, 22, 0.42), transparent 24rem),
        radial-gradient(circle at 80% 18%, rgba(236, 72, 153, 0.35), transparent 22rem);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    min-height: min(82vh, 760px);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
    padding: 74px 0 58px;
}

.hero-copy {
    color: #ffffff;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
    margin: 14px 0 18px;
    font-size: clamp(2.6rem, 7vw, 6.5rem);
    line-height: 0.96;
    font-weight: 950;
    letter-spacing: -0.07em;
}

.hero-line {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.8;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border: 1px solid rgba(249, 115, 22, 0.22);
    border-radius: 999px;
    color: #9a3412;
    background: #fff7ed;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-tags span,
.detail-tags span {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button,
.section-more,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.30);
}

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

.ghost-button.dark {
    color: var(--orange);
    border-color: rgba(249, 115, 22, 0.25);
    background: #ffffff;
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-poster {
    justify-self: end;
    width: min(380px, 100%);
    transform: rotate(2deg);
    filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.38));
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 34px;
    background: linear-gradient(135deg, #fed7aa, #fbcfe8);
}

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

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

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

.search-panel,
.content-section,
.category-strip,
.category-overview,
.podium-grid,
.detail-content,
.player-section,
.category-nav,
.page-hero {
    width: min(1280px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.search-panel {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 460px);
    gap: 24px;
    align-items: center;
    margin-top: 44px;
    padding: 26px;
    border: 1px solid rgba(249, 115, 22, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.search-panel h2,
.section-heading h2,
.page-hero h1,
.detail-content h2,
.player-section h2 {
    margin: 6px 0 0;
    color: var(--text);
    font-size: clamp(1.55rem, 3vw, 2.6rem);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.search-panel p,
.page-hero p,
.spotlight-panel p,
.site-footer p,
.category-card p,
.detail-content p {
    color: var(--muted);
    line-height: 1.85;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 12px;
}

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

.category-tile {
    position: relative;
    min-height: 154px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 20px;
    border-radius: var(--radius-md);
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.82)),
        var(--tile-image) center / cover no-repeat;
    box-shadow: var(--shadow);
}

.category-tile::after,
.podium-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.28), rgba(236, 72, 153, 0.25));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.category-tile:hover::after,
.podium-card:hover::after {
    opacity: 1;
}

.category-tile span,
.category-tile strong,
.podium-card span,
.podium-card strong,
.podium-card em {
    position: relative;
    z-index: 2;
}

.category-tile span {
    font-size: 1.25rem;
    font-weight: 950;
}

.category-tile strong {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.content-section {
    padding: 54px 0 0;
}

.content-section.no-top-gap {
    padding-top: 28px;
}

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

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

.section-more,
.text-link {
    min-height: 40px;
    color: var(--orange);
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.10);
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(249, 115, 22, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(124, 45, 18, 0.10);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.28);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #fed7aa, #fbcfe8);
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.32s ease, filter 0.32s ease;
}

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

.score-badge,
.play-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.22);
}

.score-badge {
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.play-badge {
    right: 12px;
    bottom: 12px;
    background: rgba(17, 24, 39, 0.76);
    backdrop-filter: blur(10px);
}

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

.movie-meta-line {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
}

.movie-card h3 {
    margin: 8px 0 8px;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 950;
}

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

.movie-card p {
    min-height: 52px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 42px 54px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(249, 115, 22, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    box-shadow: 0 10px 22px rgba(124, 45, 18, 0.10);
}

.rank-no {
    color: var(--orange);
    font-size: 1.05rem;
    font-weight: 950;
}

.rank-item img {
    width: 54px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
    background: #fed7aa;
}

.rank-text strong,
.rank-text em {
    display: block;
}

.rank-text strong {
    font-weight: 950;
}

.rank-text em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.84rem;
    font-style: normal;
}

.spotlight-panel,
.page-hero,
.player-section,
.detail-content article,
.detail-content aside {
    border: 1px solid rgba(249, 115, 22, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

.spotlight-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    background:
        radial-gradient(circle at 88% 0%, rgba(236, 72, 153, 0.16), transparent 17rem),
        linear-gradient(135deg, #ffffff, #fff7ed);
}

.spotlight-panel h2 {
    margin: 10px 0 12px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.95;
    font-weight: 950;
    letter-spacing: -0.07em;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-hero {
    margin-top: 34px;
    padding: clamp(32px, 6vw, 62px);
    background:
        radial-gradient(circle at 88% 8%, rgba(236, 72, 153, 0.18), transparent 20rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 247, 237, 0.86));
}

.page-hero.slim {
    text-align: center;
}

.category-hero .page-filter {
    margin-top: 22px;
    max-width: 760px;
}

.category-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 18px 0 0;
    scrollbar-width: none;
}

.category-nav a {
    padding: 10px 15px;
    border: 1px solid rgba(249, 115, 22, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
}

.category-nav a.is-current {
    background: #ffedd5;
}

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

.category-card {
    overflow: hidden;
    border: 1px solid rgba(249, 115, 22, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 16px 36px rgba(124, 45, 18, 0.10);
}

.category-card > div {
    padding: 20px;
}

.category-card h2 {
    margin: 0 0 8px;
    font-size: 1.45rem;
    font-weight: 950;
}

.category-cover-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 6px;
    background: #fff7ed;
}

.category-cover-grid img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 14px;
    background: #fed7aa;
}

.podium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding-top: 34px;
}

.podium-card {
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
    border-radius: var(--radius-lg);
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.88)),
        var(--podium-image) center / cover no-repeat;
    box-shadow: var(--shadow);
}

.podium-card span {
    color: #fed7aa;
    font-weight: 950;
}

.podium-card strong {
    margin-top: 10px;
    font-size: 1.55rem;
    font-weight: 950;
}

.podium-card em {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
    font-weight: 800;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: var(--dark);
}

.detail-hero-bg {
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.96) 0%, rgba(17, 24, 39, 0.76) 55%, rgba(17, 24, 39, 0.42) 100%),
        var(--detail-image) center / cover no-repeat;
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
    padding: 70px 0;
}

.detail-poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 32px;
    background: #fed7aa;
    box-shadow: 0 28px 52px rgba(0, 0, 0, 0.34);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 800;
}

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

.detail-info p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    line-height: 1.85;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 800px;
    margin: 24px 0 0;
}

.detail-meta div {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}

.detail-meta dt {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.78rem;
    font-weight: 800;
}

.detail-meta dd {
    margin: 5px 0 0;
    color: #ffffff;
    font-weight: 950;
}

.player-section {
    margin-top: 34px;
    padding: clamp(18px, 4vw, 32px);
}

.player-shell {
    position: relative;
    overflow: hidden;
    margin-top: 18px;
    border-radius: 26px;
    background: #000000;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
    cursor: pointer;
}

.video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.10), rgba(17, 24, 39, 0.55));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.38);
}

.play-icon::before {
    content: "";
    display: block;
    margin-left: 6px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 23px solid #ffffff;
}

.player-status {
    position: absolute;
    left: 18px;
    bottom: 14px;
    z-index: 5;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    padding-top: 34px;
}

.detail-content article,
.detail-content aside {
    padding: clamp(20px, 4vw, 34px);
}

.detail-content h2 + p {
    margin-top: 10px;
}

.detail-content p + h2 {
    margin-top: 26px;
}

.site-footer {
    margin-top: 70px;
    padding: 38px 0;
    border-top: 1px solid rgba(249, 115, 22, 0.16);
    background: rgba(255, 255, 255, 0.80);
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px 18px;
}

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

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

    .menu-toggle {
        display: block;
    }

    .header-search {
        margin-left: auto;
        width: min(360px, 42vw);
    }

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

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

@media (max-width: 860px) {
    .header-inner {
        min-height: 66px;
        gap: 12px;
    }

    .header-search {
        order: 3;
        width: 100%;
        margin: 0 0 12px;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .hero-content,
    .detail-hero-inner,
    .search-panel,
    .split-section,
    .detail-content,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 44px;
    }

    .hero-poster {
        justify-self: start;
        width: min(250px, 62vw);
    }

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

    .detail-meta,
    .filter-bar,
    .podium-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .category-strip,
    .category-overview,
    .movie-grid.large-list,
    .movie-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1,
    .detail-info h1 {
        font-size: 2.6rem;
    }

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