:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --orange-50: #fff7ed;
    --orange-500: #f97316;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: linear-gradient(135deg, var(--amber-50), var(--orange-50) 42%, #ffffff 100%);
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-600), var(--orange-500));
    box-shadow: var(--shadow-lg);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
}

.brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 0.18);
    border: 1px solid rgb(255 255 255 / 0.35);
    box-shadow: inset 0 0 20px rgb(255 255 255 / 0.15);
}

.brand-text {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 700;
    opacity: 0.92;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--amber-100);
    opacity: 1;
}

.menu-button {
    display: none;
    color: var(--white);
    border: 1px solid rgb(255 255 255 / 0.4);
    border-radius: 0.75rem;
    background: rgb(0 0 0 / 0.14);
    padding: 0.45rem 0.7rem;
}

.category-strip {
    border-top: 1px solid rgb(255 255 255 / 0.18);
    background: rgb(0 0 0 / 0.08);
}

.category-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.55rem 1rem;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
}

.category-strip-inner a {
    white-space: nowrap;
    font-size: 0.92rem;
    color: rgb(255 255 255 / 0.92);
}

.category-strip-inner a:hover {
    color: var(--amber-100);
}

.mobile-nav {
    display: none;
    padding: 0 1rem 1rem;
    border-top: 1px solid rgb(255 255 255 / 0.18);
}

.mobile-nav.open {
    display: grid;
    gap: 0.55rem;
}

.mobile-link {
    padding: 0.65rem 0;
    color: var(--white);
    font-weight: 700;
}

.mobile-link.active {
    color: var(--amber-100);
}

.hero {
    position: relative;
    height: 600px;
    min-height: 520px;
    overflow: hidden;
    background: var(--black);
}

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

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 0.88), rgb(0 0 0 / 0.55) 46%, rgb(0 0 0 / 0.18));
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(1280px, 100%);
    transform: translateX(-50%);
    padding: 3rem 1rem 5.5rem;
    color: var(--white);
}

.hero-eyebrow,
.page-hero p,
.section-heading p {
    margin: 0 0 0.65rem;
    color: var(--amber-400);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.hero h2 {
    max-width: 860px;
    margin: 0 0 1rem;
    font-size: clamp(2.1rem, 5vw, 4.8rem);
    line-height: 1.04;
    font-weight: 900;
    text-shadow: 0 18px 35px rgb(0 0 0 / 0.45);
}

.hero-movie-title {
    font-size: clamp(1.7rem, 3vw, 3rem) !important;
}

.hero-summary {
    max-width: 760px;
    margin: 0 0 1.2rem;
    color: #e5e7eb;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.75;
}

.hero-meta,
.detail-meta,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
}

.hero-meta span,
.detail-meta span {
    border-radius: 999px;
    background: rgb(255 255 255 / 0.14);
    border: 1px solid rgb(255 255 255 / 0.2);
    padding: 0.38rem 0.75rem;
    color: #f3f4f6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    border-radius: 999px;
    padding: 0.78rem 1.55rem;
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.primary-button {
    color: var(--white);
    background: var(--amber-600);
    box-shadow: var(--shadow-lg);
}

.primary-button:hover {
    background: var(--amber-700);
    transform: translateY(-2px);
}

.ghost-button {
    color: var(--white);
    border: 1px solid rgb(255 255 255 / 0.5);
    background: rgb(0 0 0 / 0.24);
}

.ghost-button:hover {
    background: rgb(0 0 0 / 0.42);
    transform: translateY(-2px);
}

.ghost-button.light {
    border-color: rgb(255 255 255 / 0.6);
}

.hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.hero-categories a {
    color: var(--white);
    background: rgb(255 255 255 / 0.13);
    border: 1px solid rgb(255 255 255 / 0.18);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.9rem;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgb(0 0 0 / 0.48);
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgb(0 0 0 / 0.7);
}

.hero-prev {
    left: 1rem;
}

.hero-next {
    right: 1rem;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 2.5rem;
    display: flex;
    gap: 0.45rem;
    transform: translateX(-50%);
}

.hero-dot {
    width: 0.62rem;
    height: 0.62rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.5);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
    width: 2rem;
    background: var(--amber-500);
}

.content-section,
.page-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.page-main {
    padding-top: 1.5rem;
}

.intro-section {
    padding-top: 4rem;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.center-heading {
    justify-content: center;
    text-align: center;
}

.flat-heading {
    align-items: start;
}

.section-heading h2 {
    margin: 0;
    color: var(--gray-900);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1.15;
    font-weight: 900;
}

.section-heading a,
.text-link {
    color: var(--amber-600);
    font-weight: 800;
}

.section-heading a:hover,
.text-link:hover {
    color: var(--amber-700);
}

.feature-grid,
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature-grid a,
.category-card {
    display: grid;
    gap: 0.55rem;
    min-height: 8rem;
    border-radius: 1.35rem;
    padding: 1.45rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-grid a:hover,
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-grid strong,
.category-card span {
    color: var(--gray-900);
    font-size: 1.15rem;
    font-weight: 900;
}

.feature-grid span,
.category-card p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.65;
}

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

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

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

.small-grid,
.library-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--gray-100);
}

.movie-card.compact .poster-link {
    aspect-ratio: 16 / 10;
}

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

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

.play-chip,
.year-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.play-chip {
    right: 0.65rem;
    bottom: 0.65rem;
    color: var(--white);
    background: rgb(0 0 0 / 0.62);
    padding: 0.35rem 0.65rem;
}

.year-chip {
    left: 0.65rem;
    top: 0.65rem;
    color: var(--amber-800);
    background: var(--amber-100);
    padding: 0.28rem 0.6rem;
}

.rank-badge {
    left: 0.65rem;
    bottom: 0.65rem;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--orange-500));
    box-shadow: var(--shadow-md);
}

.movie-card-body {
    padding: 1rem;
}

.movie-title {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 0.45rem;
    color: var(--gray-900);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

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

.movie-line {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2.9rem;
    margin: 0 0 0.75rem;
    color: var(--gray-600);
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-meta {
    gap: 0.45rem;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.movie-meta span + span::before {
    content: "•";
    margin-right: 0.45rem;
    color: var(--gray-500);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.tag-row span {
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.28rem 0.55rem;
    font-size: 0.78rem;
}

.highlight-panel {
    border-radius: 1.5rem;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
    gap: 1.5rem;
    align-items: start;
}

.rank-list {
    display: grid;
    gap: 0.75rem;
}

.rank-list-item {
    display: grid;
    grid-template-columns: auto 5rem minmax(0, 1fr);
    align-items: center;
    gap: 0.85rem;
    border-radius: 1rem;
    padding: 0.75rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-list-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.rank-list-item img {
    width: 5rem;
    height: 3.25rem;
    object-fit: cover;
    border-radius: 0.7rem;
}

.rank-list-item strong,
.rank-list-item em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-list-item strong {
    color: var(--gray-900);
    font-weight: 900;
}

.rank-list-item em {
    color: var(--gray-500);
    font-style: normal;
    font-size: 0.88rem;
}

.list-rank {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    background: var(--amber-600);
    font-weight: 900;
}

.search-card,
.side-card,
.detail-card,
.filter-panel,
.category-overview-card {
    border-radius: 1.25rem;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.search-card {
    padding: 1.5rem;
}

.search-card h2 {
    margin-top: 0;
    font-size: 1.6rem;
}

.search-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 1.8rem;
    padding: clamp(2.2rem, 6vw, 4.5rem);
    color: var(--white);
    background: linear-gradient(135deg, var(--gray-900), var(--amber-700));
    box-shadow: var(--shadow-xl);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -8rem;
    bottom: -8rem;
    width: 20rem;
    height: 20rem;
    border-radius: 999px;
    background: rgb(245 158 11 / 0.24);
}

.page-hero h1 {
    position: relative;
    margin: 0 0 1rem;
    max-width: 780px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.1;
    font-weight: 900;
}

.page-hero span {
    position: relative;
    display: block;
    max-width: 760px;
    color: #e5e7eb;
    line-height: 1.8;
}

.page-actions {
    position: relative;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.6fr);
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.filter-title {
    display: block;
    color: var(--gray-900);
    font-weight: 900;
    font-size: 1.25rem;
}

.filter-panel p {
    margin: 0.25rem 0 0;
    color: var(--gray-600);
}

.filter-controls {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) repeat(3, minmax(120px, 0.45fr));
    gap: 0.65rem;
}

.filter-controls input,
.filter-controls select {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 0.85rem;
    background: var(--gray-50);
    color: var(--gray-900);
    padding: 0.78rem 0.85rem;
    outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 3px rgb(245 158 11 / 0.18);
}

.empty-state {
    margin: 2rem 0 0;
    border-radius: 1rem;
    background: var(--white);
    color: var(--gray-600);
    padding: 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

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

.category-overview-card {
    overflow: hidden;
}

.category-cover-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: 9rem;
    overflow: hidden;
}

.category-cover-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overview-card div {
    padding: 1.25rem;
}

.category-overview-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
}

.category-overview-card p {
    margin: 0 0 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.breadcrumb {
    max-width: 1280px;
    margin: 0 auto 1rem;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--amber-600);
    font-weight: 800;
}

.detail-main {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.detail-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
    gap: 1.5rem;
    align-items: start;
}

.player-panel {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    background: var(--black);
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--black);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--white);
    background: linear-gradient(to top, rgb(0 0 0 / 0.62), rgb(0 0 0 / 0.25));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.big-play {
    width: 5rem;
    height: 5rem;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--amber-600);
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.35);
    font-size: 2rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.big-play:hover {
    background: var(--amber-700);
    transform: scale(1.06);
}

.play-status {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgb(0 0 0 / 0.45);
    font-weight: 800;
}

.detail-card {
    margin-top: 1.5rem;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.detail-card h1 {
    margin: 0 0 1rem;
    color: var(--gray-900);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.16;
    font-weight: 900;
}

.detail-meta {
    margin-bottom: 1.5rem;
}

.detail-meta span {
    color: var(--amber-800);
    background: var(--amber-100);
    border: 0;
}

.detail-card h2,
.side-card h2 {
    margin: 0 0 0.85rem;
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 900;
}

.detail-card section + section {
    margin-top: 1.6rem;
}

.detail-card p {
    margin: 0.5rem 0 0;
    color: var(--gray-700);
    line-height: 1.85;
}

.review-box {
    border-radius: 1rem;
    background: linear-gradient(90deg, var(--amber-50), var(--orange-50));
    padding: 1.25rem;
}

.detail-tags span {
    background: var(--amber-100);
    color: var(--amber-800);
}

.detail-sidebar {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 7rem;
}

.side-card {
    padding: 1.2rem;
}

.poster-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.full-button {
    width: 100%;
}

.info-list {
    display: grid;
    gap: 0;
    margin: 0;
}

.info-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-200);
    padding: 0.75rem 0;
}

.info-list div:last-child {
    border-bottom: 0;
}

.info-list dt {
    color: var(--gray-600);
}

.info-list dd {
    margin: 0;
    color: var(--gray-900);
    font-weight: 800;
    text-align: right;
}

.info-list a {
    color: var(--amber-600);
}

.related-section {
    padding-top: 2rem;
}

.site-footer {
    margin-top: 3rem;
    color: #d1d5db;
    background: var(--gray-900);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo {
    color: var(--white);
}

.footer-brand p {
    max-width: 520px;
    color: #d1d5db;
    line-height: 1.8;
}

.footer-links h2 {
    margin: 0 0 1rem;
    color: var(--white);
    font-size: 1.1rem;
}

.footer-links div {
    display: grid;
    gap: 0.55rem;
}

.footer-links a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 0.08);
    padding: 1rem;
    color: #9ca3af;
    text-align: center;
}

@media (max-width: 1100px) {
    .small-grid,
    .library-grid,
    .featured-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

    .menu-button {
        display: inline-flex;
    }

    .hero {
        height: 560px;
    }

    .hero-content {
        padding-right: 3.8rem;
        padding-bottom: 4.5rem;
    }

    .hero-arrow {
        width: 2.5rem;
        height: 2.5rem;
    }

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

    .feature-grid,
    .category-grid,
    .category-overview-grid,
    .two-column-section,
    .detail-layout,
    .footer-inner,
    .filter-panel {
        grid-template-columns: 1fr;
    }

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

    .detail-sidebar {
        position: static;
    }
}

@media (max-width: 560px) {
    .header-inner {
        padding: 0.75rem 1rem;
    }

    .brand-text {
        font-size: 1rem;
    }

    .category-strip-inner {
        gap: 0.75rem;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        padding: 2rem 1rem 4.8rem;
    }

    .hero-actions,
    .page-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-arrow {
        display: none;
    }

    .movie-grid,
    .small-grid,
    .library-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .movie-card.compact .poster-link {
        aspect-ratio: 16 / 9;
    }

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

    .rank-list-item {
        grid-template-columns: auto 4.2rem minmax(0, 1fr);
    }

    .rank-list-item img {
        width: 4.2rem;
        height: 2.8rem;
    }

    .category-cover-row {
        height: 7rem;
    }
}
