:root {
    --orange: #ea580c;
    --orange-dark: #c2410c;
    --red: #dc2626;
    --yellow: #f59e0b;
    --text: #111827;
    --muted: #6b7280;
    --soft: #f9fafb;
    --line: #e5e7eb;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.08);
    --radius: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, var(--orange) 0%, var(--red) 100%);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.24);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    flex-shrink: 0;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 24px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 22px;
    letter-spacing: 0.02em;
}

.brand-copy small {
    margin-top: 3px;
    font-size: 12px;
    opacity: 0.9;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #ffffff;
    font-weight: 650;
}

.desktop-nav a,
.nav-dropdown button {
    color: #ffffff;
    border: 0;
    background: transparent;
    padding: 8px 0;
    transition: opacity 0.2s ease;
}

.desktop-nav a:hover,
.nav-dropdown button:hover {
    opacity: 0.82;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 188px;
    padding: 10px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow);
    display: grid;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    color: #374151;
    padding: 9px 12px;
    border-radius: 10px;
}

.nav-dropdown-menu a:hover {
    color: var(--orange);
    background: #fff7ed;
}

.nav-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    width: min(330px, 30vw);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.nav-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    padding: 10px 14px;
}

.nav-search input::placeholder {
    color: rgba(255, 255, 255, 0.74);
}

.nav-search button,
.mobile-search button {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    padding: 10px 14px;
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 22px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 16px;
    background: rgba(194, 65, 12, 0.98);
}

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

.mobile-nav a {
    color: #ffffff;
    font-weight: 650;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-search {
    display: flex;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}

.mobile-search input {
    flex: 1;
    min-width: 0;
    color: #ffffff;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 11px 14px;
}

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

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

.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.56) 48%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
    color: #ffffff;
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--orange);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.02em;
}

.hero-copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(36px, 6vw, 60px);
    line-height: 1.05;
}

.hero-copy p {
    max-width: 620px;
    margin: 0 0 28px;
    color: #e5e7eb;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-button,
.ghost-button,
.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 11px 24px;
    font-weight: 750;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange) 0%, var(--red) 100%);
    box-shadow: 0 14px 28px rgba(234, 88, 12, 0.32);
}

.primary-button:hover,
.ghost-button:hover,
.outline-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

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

.outline-button {
    color: var(--orange);
    border: 1px solid rgba(234, 88, 12, 0.28);
    background: #fff7ed;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 32px;
    background: #ffffff;
}

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

.stats-strip div {
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    padding: 22px;
    text-align: center;
}

.stats-strip strong {
    display: block;
    color: var(--orange);
    font-size: 32px;
    line-height: 1;
}

.stats-strip span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 650;
}

.section-block {
    padding: 52px 0;
}

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

.section-heading h2 {
    margin: 10px 0 0;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.15;
}

.section-heading a {
    color: var(--orange);
    font-weight: 750;
}

.section-kicker {
    color: var(--orange-dark);
    background: #ffedd5;
}

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

.category-tile {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 20px;
    padding: 22px;
    color: #ffffff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow);
}

.category-tile span {
    font-size: 38px;
    margin-bottom: 8px;
}

.category-tile strong {
    font-size: 21px;
}

.category-tile small {
    margin-top: 8px;
    opacity: 0.9;
}

.category-tile--blue,
.page-hero--blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.category-tile--green,
.page-hero--green {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
}

.category-tile--orange,
.page-hero--orange,
.page-hero--ranking {
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
}

.category-tile--red,
.page-hero--red {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

.category-tile--purple,
.page-hero--purple,
.page-hero--search {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.category-tile--pink,
.page-hero--pink {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.category-tile--cyan,
.page-hero--cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0e7490 100%);
}

.category-tile--yellow,
.page-hero--yellow {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.wide-band {
    background: linear-gradient(135deg, #fff7ed 0%, #fef2f2 100%);
}

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

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

.movie-grid--preview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 20px;
}

.movie-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111827;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.movie-card:hover .movie-poster img {
    transform: scale(1.06);
    opacity: 0.88;
}

.movie-badge,
.movie-year {
    position: absolute;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 750;
    padding: 5px 9px;
}

.movie-badge {
    top: 10px;
    left: 10px;
    background: var(--orange);
}

.movie-year {
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(6px);
}

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

.movie-title {
    display: -webkit-box;
    min-height: 50px;
    overflow: hidden;
    color: #111827;
    font-size: 17px;
    font-weight: 760;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-title:hover {
    color: var(--orange);
}

.movie-desc {
    display: -webkit-box;
    min-height: 44px;
    margin: 8px 0 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.movie-tags span,
.tag-pill,
.genre-list span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 720;
}

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

.movie-card--compact {
    border-radius: 14px;
}

.compact-card-link {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
}

.compact-card-image {
    width: 140px;
    height: 92px;
    border-radius: 12px;
    object-fit: cover;
}

.compact-card-title {
    overflow: hidden;
    white-space: nowrap;
    color: #111827;
    font-weight: 760;
    text-overflow: ellipsis;
}

.compact-card-meta {
    margin: 4px 0;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
}

.compact-card-body p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-panel {
    border-radius: 24px;
}

.rank-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    padding: 18px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 48px 94px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 14px;
    transition: background 0.2s ease;
}

.rank-row:hover {
    background: #f9fafb;
}

.rank-number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #4b5563;
    background: #f3f4f6;
    font-weight: 800;
}

.rank-number--hot {
    color: #ffffff;
    background: linear-gradient(135deg, #facc15 0%, var(--orange) 100%);
}

.rank-row img {
    width: 94px;
    height: 62px;
    border-radius: 10px;
    object-fit: cover;
}

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

.rank-info strong,
.rank-info small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info strong {
    font-size: 16px;
}

.rank-info small {
    color: var(--muted);
    font-size: 13px;
}

.rank-crown {
    color: var(--yellow);
    font-size: 20px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 170px 150px 130px;
    gap: 12px;
    align-items: center;
    margin-bottom: 22px;
    padding: 16px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.filter-search {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: #f3f4f6;
    padding: 0 14px;
}

.filter-search input,
.filter-select {
    width: 100%;
    border: 0;
    outline: 0;
    background: #f3f4f6;
    padding: 12px 6px;
}

.filter-select {
    border-radius: 999px;
    padding: 12px 14px;
}

.filter-count {
    color: var(--muted);
    text-align: right;
    font-weight: 650;
}

.filter-count strong {
    color: var(--orange);
}

.empty-state {
    display: none;
    margin-top: 22px;
    border-radius: 18px;
    color: var(--muted);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    padding: 28px;
    text-align: center;
}

.empty-state.is-visible {
    display: block;
}

.page-hero {
    color: #ffffff;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    padding: 76px 0;
}

.page-hero h1 {
    margin: 12px 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.category-large-icon {
    display: block;
    font-size: 48px;
    margin-bottom: 12px;
}

.category-overview-list {
    display: grid;
    gap: 26px;
}

.category-overview-card {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.category-overview-head {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 18px;
}

.category-overview-head > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #fff7ed;
    font-size: 32px;
}

.category-overview-head h2 {
    margin: 0 0 4px;
    font-size: 25px;
}

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

.category-overview-head strong {
    color: var(--orange);
    font-size: 24px;
}

.category-overview-card .outline-button {
    margin-top: 18px;
}

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

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

.detail-hero-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.28) 100%);
}

.detail-hero-inner {
    position: relative;
    padding: 34px 0 48px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

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

.detail-heading {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 32px;
    align-items: end;
}

.detail-poster {
    width: 260px;
    aspect-ratio: 3 / 4;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.detail-heading h1 {
    margin: 18px 0 12px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.08;
}

.detail-heading p {
    max-width: 780px;
    margin: 0 0 18px;
    color: #e5e7eb;
    font-size: 18px;
}

.detail-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.detail-meta-list span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 6px 12px;
    font-weight: 700;
}

.movie-tags--detail span {
    color: #ffffff;
    background: rgba(234, 88, 12, 0.92);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 0.95fr);
    gap: 28px;
    padding: 40px 0 56px;
}

.detail-main,
.detail-side {
    min-width: 0;
}

.player-card,
.content-card,
.side-card {
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

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

.movie-player,
.player-cover,
.player-cover img,
.player-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.movie-player {
    object-fit: contain;
    z-index: 1;
}

.player-cover {
    z-index: 2;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000000;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-cover img {
    object-fit: cover;
}

.player-shade {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.72));
}

.player-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.36);
    transform: translate(-50%, -50%);
    font-size: 30px;
    line-height: 1;
    padding-left: 5px;
}

.content-card {
    margin-top: 22px;
    padding: 26px;
}

.content-card h2,
.side-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.content-card p {
    margin: 0;
    color: #374151;
    font-size: 16px;
}

.genre-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.side-card {
    position: sticky;
    top: 92px;
    padding: 20px;
}

.side-card-grid {
    display: grid;
    gap: 14px;
}

.side-card-grid .movie-card:not(.movie-card--compact) {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
}

.side-card-grid .movie-poster {
    aspect-ratio: auto;
    min-height: 100%;
}

.side-card-grid .movie-title {
    min-height: auto;
    font-size: 15px;
}

.side-card-grid .movie-desc {
    min-height: auto;
    -webkit-line-clamp: 2;
}

.site-footer {
    color: #d1d5db;
    background: #111827;
    padding: 46px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px;
}

.footer-logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: 820;
    margin-bottom: 10px;
}

.footer-grid p {
    max-width: 440px;
    margin: 0;
}

.footer-grid h3 {
    margin: 0 0 12px;
    color: #ffffff;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a:hover {
    color: #fb923c;
}

.footer-bottom {
    width: min(100% - 32px, var(--container));
    margin: 30px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

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

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

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

    .filter-panel {
        grid-template-columns: 1fr 150px;
    }

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

    .side-card {
        position: static;
    }
}

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

    .hero {
        height: 560px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.78) 100%);
    }

    .stats-strip,
    .category-grid,
    .movie-grid,
    .movie-grid--featured,
    .movie-grid--preview,
    .compact-grid,
    .rank-grid,
    .rank-grid--full,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .filter-panel {
        grid-template-columns: 1fr;
    }

    .filter-count {
        text-align: left;
    }

    .compact-card-link {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .compact-card-image {
        width: 112px;
        height: 84px;
    }

    .rank-row {
        grid-template-columns: 42px 82px minmax(0, 1fr) 18px;
        gap: 10px;
        padding: 10px;
    }

    .rank-row img {
        width: 82px;
        height: 58px;
    }

    .detail-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

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

    .side-card-grid .movie-card:not(.movie-card--compact) {
        grid-template-columns: 112px minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .brand-copy strong {
        font-size: 19px;
    }

    .brand-copy small {
        display: none;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .primary-button,
    .ghost-button,
    .outline-button {
        width: 100%;
    }

    .movie-grid {
        gap: 16px;
    }
}
