:root {
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --pink-500: #ec4899;
    --purple-500: #a855f7;
    --blue-500: #3b82f6;
    --cyan-500: #06b6d4;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--gray-900);
    background: linear-gradient(180deg, #fff1f4 0%, #ffffff 42%, #eff6ff 100%);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
    display: block;
    max-width: 100%;
    background: linear-gradient(135deg, #ffe4e6, #e0f2fe);
}

main {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
}

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

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

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
    box-shadow: 0 12px 24px rgba(244, 63, 94, 0.28);
}

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

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

.nav-link {
    color: var(--gray-700);
    font-weight: 650;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose-500);
}

.header-search {
    position: relative;
}

.header-search input,
.mobile-search input,
.filter-search input {
    width: 230px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    outline: 0;
    padding: 12px 18px;
    background: var(--white);
    color: var(--gray-900);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-search input:focus {
    border-color: var(--rose-500);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--gray-100);
    cursor: pointer;
}

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

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 18px;
    padding: 18px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

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

.mobile-search input {
    width: 100%;
}

.mobile-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.mobile-nav-link {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--gray-700);
    background: var(--gray-50);
    font-weight: 700;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--rose-600);
    background: #fff1f2;
}

.hero-carousel {
    position: relative;
    min-height: 620px;
    color: var(--white);
    background: linear-gradient(120deg, var(--rose-500), var(--pink-500), var(--purple-500));
}

.hero-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.35), transparent 28%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.22), transparent 30%);
}

.hero-track {
    position: relative;
    min-height: 620px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    align-items: center;
    gap: 46px;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 42px 0;
    border-radius: 34px;
    background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.64), rgba(15, 23, 42, 0.18)), var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    opacity: 0.24;
}

.hero-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-copy,
.hero-poster,
.detail-info,
.detail-poster {
    position: relative;
    z-index: 1;
}

.hero-kicker,
.eyebrow {
    margin: 0 0 12px;
    color: var(--rose-500);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker,
.eyebrow.light {
    color: #ffe4e6;
}

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

.hero-summary,
.page-hero p,
.detail-one-line {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
    line-height: 1.8;
}

.hero-tags,
.tag-list,
.detail-meta,
.feature-meta,
.card-meta,
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-tags span,
.detail-meta span,
.feature-meta span,
.card-meta span,
.tag-list a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: inherit;
    font-size: 13px;
    font-weight: 700;
}

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

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

.primary-button {
    min-height: 48px;
    padding: 0 24px;
    color: var(--white);
    background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
    box-shadow: 0 14px 30px rgba(244, 63, 94, 0.28);
}

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

.primary-button.small {
    min-height: 40px;
    padding: 0 18px;
    font-size: 14px;
}

.ghost-button {
    min-height: 48px;
    padding: 0 24px;
    border: 2px solid rgba(255, 255, 255, 0.82);
    color: var(--white);
}

.ghost-button:hover {
    color: var(--rose-600);
    background: var(--white);
}

.outline-button {
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid var(--rose-200, #fecdd3);
    color: var(--rose-600);
    background: #fff1f2;
}

.text-link {
    color: var(--rose-600);
}

.hero-poster {
    display: block;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.35);
    transform: rotate(2deg);
}

.hero-poster:hover,
.feature-image:hover,
.detail-poster:hover {
    transform: translateY(-4px) rotate(0deg);
}

.hero-poster img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.hero-poster.mini img {
    height: 330px;
}

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

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

.hero-dot.is-active {
    width: 34px;
    background: var(--white);
}

.feature-panel,
.content-section,
.spotlight-band,
.page-hero,
.detail-hero,
.detail-content,
.breadcrumb,
.overview-stack {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.feature-panel {
    display: grid;
    grid-template-columns: 1fr 430px;
    align-items: center;
    gap: 36px;
    margin-top: -54px;
    padding: 34px;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 4;
}

.feature-copy h2,
.section-heading h2,
.category-overview-head h2,
.detail-content h2 {
    margin: 0;
    color: var(--gray-900);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.18;
}

.feature-copy p,
.category-overview-head p,
.detail-content p,
.site-footer p {
    color: var(--gray-500);
    line-height: 1.85;
}

.feature-meta span,
.card-meta span,
.detail-meta span,
.tag-list a {
    color: var(--gray-600, #475569);
    background: var(--gray-100);
}

.feature-image {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease;
}

.feature-image img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.content-section {
    margin-top: 68px;
    margin-bottom: 68px;
}

.section-heading,
.category-overview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.section-heading.with-tools {
    align-items: end;
}

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

.category-tile a,
.category-overview-card {
    position: relative;
    display: block;
    height: 100%;
    min-height: 210px;
    padding: 24px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.category-tile a:hover,
.category-overview-card:hover,
.movie-card:hover,
.ranking-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.category-tile a,
.category-overview-card,
.movie-card,
.ranking-row {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-glow {
    position: absolute;
    right: -36px;
    top: -36px;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.22), rgba(168, 85, 247, 0.22));
}

.category-tile strong {
    display: block;
    margin-bottom: 14px;
    font-size: 24px;
}

.category-tile p {
    color: var(--gray-500);
    line-height: 1.7;
}

.category-samples {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
    color: var(--rose-600);
    font-size: 13px;
    font-weight: 700;
}

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

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

.movie-card {
    border-radius: 22px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.poster-link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe4e6, #dbeafe);
}

.movie-card.horizontal .poster-link {
    flex-direction: row;
}

.movie-card.horizontal .poster-wrap {
    width: 42%;
    min-width: 160px;
    aspect-ratio: auto;
}

.poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover img,
.compact-link:hover img,
.ranking-row:hover img {
    transform: scale(1.06);
}

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.62), transparent);
}

.poster-region,
.rank-flag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--gray-900);
    background: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.rank-flag {
    right: 12px;
    left: auto;
    color: var(--white);
    background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.card-body strong {
    font-size: 18px;
    line-height: 1.35;
}

.card-desc {
    color: var(--gray-500);
    line-height: 1.6;
    font-size: 14px;
}

.card-meta span {
    min-height: 24px;
    font-size: 12px;
}

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

.movie-card.compact .card-desc {
    display: none;
}

.spotlight-band {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: center;
    margin-top: 68px;
    margin-bottom: 68px;
    padding: 44px;
    border-radius: 32px;
    color: var(--white);
    background: linear-gradient(120deg, var(--blue-500), var(--cyan-500));
    box-shadow: 0 24px 70px rgba(37, 99, 235, 0.22);
}

.spotlight-band h2 {
    margin: 0;
    font-size: clamp(30px, 5vw, 48px);
}

.spotlight-band p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}

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

.compact-link {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.compact-row .compact-link {
    background: var(--gray-50);
}

.compact-link img {
    width: 76px;
    height: 88px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.compact-link strong {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.compact-link em {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.74);
    font-style: normal;
    font-size: 13px;
}

.compact-row .compact-link em {
    color: var(--gray-500);
}

.filter-search.wide input {
    width: min(520px, 100%);
}

.filter-chips {
    margin-bottom: 24px;
}

.chip {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-weight: 800;
    cursor: pointer;
}

.chip.active,
.chip:hover {
    color: var(--white);
    background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
}

.empty-state {
    display: none;
    padding: 24px;
    border-radius: 18px;
    color: var(--gray-500);
    text-align: center;
    background: var(--gray-50);
}

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

.movie-card.is-hidden,
.ranking-row.is-hidden {
    display: none;
}

.page-hero,
.detail-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 38px;
    align-items: center;
    margin-top: 34px;
    margin-bottom: 48px;
    padding: 48px;
    border-radius: 34px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(120deg, var(--rose-500), var(--pink-500), var(--purple-500));
    box-shadow: var(--shadow);
}

.page-hero.simple-hero {
    display: block;
    min-height: 260px;
}

.category-hero::before,
.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.26)), var(--hero-image);
    background-size: cover;
    background-position: center;
    opacity: 0.85;
}

.page-hero > *,
.detail-hero > * {
    position: relative;
    z-index: 1;
}

.overview-stack {
    display: grid;
    gap: 24px;
    margin-bottom: 70px;
}

.category-overview-card {
    min-height: auto;
}

.category-overview-head {
    margin-bottom: 20px;
}

.ranking-list {
    display: grid;
    gap: 16px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 58px 92px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.ranking-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
    font-weight: 900;
}

.ranking-thumb {
    display: block;
    width: 92px;
    height: 116px;
    border-radius: 16px;
    overflow: hidden;
}

.ranking-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ranking-info h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.ranking-info p {
    margin: 0 0 12px;
    color: var(--gray-500);
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    color: var(--gray-500);
    font-weight: 700;
}

.breadcrumb a {
    color: var(--rose-600);
}

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

.detail-poster {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.38);
    transition: transform 0.2s ease;
}

.detail-poster img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.detail-meta,
.tag-list {
    margin-top: 18px;
}

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

.video-stage {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: var(--gray-900);
    box-shadow: 0 26px 72px rgba(15, 23, 42, 0.28);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--white);
    background: radial-gradient(circle, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.48));
    cursor: pointer;
}

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

.play-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 999px;
    color: var(--rose-600);
    background: var(--white);
    font-size: 32px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.28);
}

.play-overlay strong {
    display: block;
    font-size: 18px;
}

.player-message {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    margin: 0;
    color: #fecdd3;
    text-align: center;
    pointer-events: none;
}

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

.detail-content article,
.detail-content aside {
    padding: 30px;
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

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

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

.detail-content dl div {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray-200);
}

.detail-content dt {
    color: var(--gray-500);
    font-weight: 800;
}

.detail-content dd {
    margin: 0;
    color: var(--gray-900);
    line-height: 1.6;
}

.site-footer {
    margin-top: 76px;
    color: #cbd5e1;
    background: var(--gray-900);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
    padding: 52px 0 38px;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 18px;
}

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

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

.footer-brand {
    color: var(--white);
    font-size: 19px;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    color: #94a3b8;
    text-align: center;
}

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

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

    .hero-slide,
    .feature-panel,
    .spotlight-band,
    .page-hero,
    .detail-hero,
    .detail-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-track,
    .hero-carousel {
        min-height: 820px;
    }

    .hero-slide {
        gap: 28px;
        padding: 50px 0 86px;
    }

    .feature-panel {
        margin-top: 28px;
    }

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

@media (max-width: 680px) {
    .header-inner {
        height: 66px;
    }

    .brand-text {
        max-width: 210px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-track,
    .hero-carousel {
        min-height: 760px;
    }

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

    .hero-copy h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 38px;
    }

    .hero-summary,
    .page-hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .hero-poster img,
    .detail-poster img {
        height: 330px;
    }

    .feature-panel,
    .content-section,
    .spotlight-band,
    .page-hero,
    .detail-hero,
    .detail-content article,
    .detail-content aside {
        padding: 22px;
        border-radius: 22px;
    }

    .section-heading,
    .section-heading.with-tools,
    .category-overview-head,
    .ranking-row {
        align-items: stretch;
        flex-direction: column;
    }

    .filter-search input {
        width: 100%;
    }

    .category-grid,
    .movie-grid,
    .rank-grid,
    .compact-grid,
    .spotlight-list,
    .compact-row,
    .mobile-nav {
        grid-template-columns: 1fr;
    }

    .ranking-row {
        display: grid;
        grid-template-columns: 50px 84px minmax(0, 1fr);
    }

    .ranking-row .outline-button {
        grid-column: 1 / -1;
    }

    .footer-grid {
        gap: 18px;
    }
}
