:root {
    --cream-50: #fffaf0;
    --cream-100: #fff4d8;
    --cream-200: #f8e2a7;
    --cocoa-100: #ead7c0;
    --cocoa-200: #c6a98b;
    --cocoa-300: #9f7b5e;
    --cocoa-500: #6f4a33;
    --cocoa-700: #3b241a;
    --cocoa-800: #2a1712;
    --cocoa-900: #160c0a;
    --chocolate-600: #7a3d21;
    --gold: #f6c567;
    --ruby: #b8422e;
    --ink: #130c0a;
    --card: rgba(255, 244, 216, 0.08);
    --card-strong: rgba(255, 244, 216, 0.14);
    --line: rgba(255, 244, 216, 0.16);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(184, 66, 46, 0.22), transparent 32rem),
        linear-gradient(135deg, var(--cocoa-900), #24110d 42%, #0d0706);
    color: var(--cream-100);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(90deg, rgba(42, 23, 18, 0.96), rgba(69, 35, 22, 0.94), rgba(122, 61, 33, 0.94));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

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

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--cocoa-900);
    background: linear-gradient(135deg, var(--cream-100), var(--gold));
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(246, 197, 103, 0.22);
}

.brand-text {
    font-size: 1.25rem;
    color: var(--cream-50);
}

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

.desktop-nav a,
.mobile-nav a {
    color: rgba(255, 244, 216, 0.78);
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--cream-50);
}

.header-search {
    display: flex;
    align-items: center;
    width: 310px;
    padding: 4px;
    background: rgba(22, 12, 10, 0.48);
    border: 1px solid rgba(255, 244, 216, 0.16);
    border-radius: 999px;
}

.header-search input,
.mobile-nav input,
.hero-search input,
.search-panel input,
.filter-bar input,
.filter-bar select,
.search-panel select {
    width: 100%;
    border: 0;
    color: var(--cream-50);
    background: transparent;
    outline: none;
}

.header-search input {
    padding: 8px 12px 8px 16px;
}

.header-search button,
.mobile-nav button,
.hero-search button,
.search-panel button {
    border: 0;
    color: var(--cocoa-900);
    background: linear-gradient(135deg, var(--cream-100), var(--gold));
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
    white-space: nowrap;
}

.mobile-menu-button {
    display: none;
    margin-left: auto;
    border: 1px solid var(--line);
    color: var(--cream-50);
    background: rgba(255, 244, 216, 0.08);
    border-radius: 12px;
    padding: 8px 11px;
}

.mobile-nav {
    display: none;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 12px 0 18px;
    border-top: 1px solid var(--line);
}

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

.mobile-nav form {
    display: flex;
    gap: 8px;
    padding: 8px;
    background: rgba(22, 12, 10, 0.5);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.mobile-nav input {
    padding: 8px 10px;
}

.hero-carousel {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.65s ease;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 7, 6, 0.92), rgba(42, 23, 18, 0.72) 48%, rgba(22, 12, 10, 0.76)),
        radial-gradient(circle at 78% 24%, rgba(246, 197, 103, 0.22), transparent 22rem);
    backdrop-filter: blur(5px);
}

.hero-content {
    position: relative;
    width: min(1200px, calc(100% - 32px));
    min-height: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 58px;
    align-items: center;
    padding: 72px 0 130px;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    color: var(--cream-50);
    font-size: clamp(2.4rem, 6vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    text-shadow: 0 14px 38px rgba(0, 0, 0, 0.5);
}

.hero-summary {
    max-width: 660px;
    margin: 26px 0 0;
    color: rgba(255, 244, 216, 0.86);
    font-size: clamp(1rem, 2.2vw, 1.28rem);
}

.hero-tags,
.movie-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.movie-tags span,
.detail-tags span {
    color: var(--cream-100);
    background: rgba(255, 244, 216, 0.12);
    border: 1px solid rgba(255, 244, 216, 0.18);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-actions,
.detail-info .primary-button {
    margin-top: 32px;
}

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

.primary-button {
    color: var(--cocoa-900);
    background: linear-gradient(135deg, var(--cream-100), var(--gold));
    box-shadow: 0 16px 34px rgba(246, 197, 103, 0.22);
}

.ghost-button {
    color: var(--cream-50);
    background: rgba(255, 244, 216, 0.12);
    border: 1px solid rgba(255, 244, 216, 0.18);
}

.primary-button:hover,
.ghost-button:hover,
.movie-card:hover,
.category-tile:hover {
    transform: translateY(-3px);
}

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

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: var(--card);
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    isolation: isolate;
}

.hero-poster::after,
.movie-poster::after,
.detail-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.48));
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    color: var(--cocoa-900);
    background: var(--cream-100);
    border-radius: 50%;
    font-size: 1.3rem;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 38px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(-50%);
}

.hero-controls > button,
.hero-dots button {
    border: 1px solid var(--line);
    color: var(--cream-50);
    background: rgba(22, 12, 10, 0.55);
    backdrop-filter: blur(10px);
}

.hero-controls > button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.5rem;
}

.hero-dots {
    display: flex;
    gap: 9px;
}

.hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
}

.hero-dots button.active {
    background: var(--gold);
    transform: scale(1.25);
}

.hero-search {
    position: absolute;
    left: 50%;
    bottom: 102px;
    z-index: 4;
    width: min(760px, calc(100% - 32px));
    display: flex;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(22, 12, 10, 0.58);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.hero-search input {
    padding: 12px 18px;
}

.section-wrap {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 70px 0;
}

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

.section-heading.compact {
    margin-bottom: 18px;
}

.section-heading p {
    margin: 0 0 6px;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    color: var(--cream-50);
    font-size: clamp(1.55rem, 3vw, 2.45rem);
    line-height: 1.15;
}

.section-heading a {
    color: var(--gold);
    font-weight: 900;
    white-space: nowrap;
}

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

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

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

.movie-card {
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 244, 216, 0.12), rgba(255, 244, 216, 0.06));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.movie-card:hover {
    border-color: rgba(246, 197, 103, 0.5);
    background: linear-gradient(180deg, rgba(255, 244, 216, 0.18), rgba(255, 244, 216, 0.08));
}

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.22);
}

.movie-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.poster-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--cocoa-900);
    background: var(--cream-100);
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

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

.movie-tags {
    margin-bottom: 10px;
}

.movie-card h3 {
    margin: 0;
    color: var(--cream-50);
    font-size: 1.08rem;
    line-height: 1.35;
}

.movie-card p {
    margin: 10px 0 0;
    color: rgba(255, 244, 216, 0.74);
    font-size: 0.92rem;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    color: rgba(255, 244, 216, 0.62);
    font-size: 0.82rem;
}

.movie-card-wide {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
}

.movie-card-wide .movie-poster img {
    height: 100%;
    aspect-ratio: auto;
}

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

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
}

.panel-card,
.category-overview-block,
.text-card,
.search-panel,
.filter-bar {
    background: rgba(255, 244, 216, 0.08);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.panel-card {
    padding: 24px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 42px 62px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: rgba(22, 12, 10, 0.38);
    border: 1px solid rgba(255, 244, 216, 0.1);
    border-radius: 16px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    border-color: rgba(246, 197, 103, 0.48);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--cocoa-900);
    background: linear-gradient(135deg, var(--cream-100), var(--gold));
    border-radius: 13px;
    font-weight: 900;
}

.rank-item img {
    width: 62px;
    height: 82px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-copy {
    display: grid;
    min-width: 0;
}

.rank-copy strong {
    overflow: hidden;
    color: var(--cream-50);
    font-size: 0.98rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-copy em {
    color: rgba(255, 244, 216, 0.62);
    font-size: 0.82rem;
    font-style: normal;
}

.movie-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.movie-rail .movie-card {
    scroll-snap-align: start;
}

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

.category-tile {
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background-image: linear-gradient(180deg, transparent, rgba(13, 7, 6, 0.9)), var(--tile-image);
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.category-tile:hover {
    border-color: rgba(246, 197, 103, 0.5);
}

.category-tile span {
    color: var(--cream-50);
    font-size: 1.35rem;
    font-weight: 900;
}

.category-tile strong {
    color: rgba(255, 244, 216, 0.76);
    font-size: 0.86rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px max(16px, calc((100% - 1200px) / 2)) 80px;
    background:
        radial-gradient(circle at 82% 20%, rgba(246, 197, 103, 0.18), transparent 18rem),
        linear-gradient(135deg, rgba(122, 61, 33, 0.62), rgba(22, 12, 10, 0.92));
    border-bottom: 1px solid var(--line);
}

.page-hero > div {
    width: min(760px, 100%);
}

.page-hero p:not(.eyebrow) {
    margin: 20px 0 0;
    color: rgba(255, 244, 216, 0.78);
    font-size: 1.08rem;
}

.categories-overview {
    display: grid;
    gap: 24px;
}

.category-overview-block {
    padding: 24px;
}

.category-desc {
    margin: -8px 0 18px;
    color: rgba(255, 244, 216, 0.72);
}

.filter-bar,
.search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 12px;
    margin-bottom: 26px;
    padding: 12px;
}

.filter-bar input,
.filter-bar select,
.search-panel input,
.search-panel select {
    min-height: 48px;
    padding: 0 16px;
    background: rgba(22, 12, 10, 0.52);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.filter-bar select,
.search-panel select {
    color: var(--cream-100);
}

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

.ranking-column {
    display: grid;
    gap: 12px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    background-image: var(--detail-image);
    background-size: cover;
    background-position: center;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 7, 6, 0.96), rgba(42, 23, 18, 0.72), rgba(13, 7, 6, 0.88)),
        radial-gradient(circle at 75% 20%, rgba(246, 197, 103, 0.18), transparent 18rem);
    backdrop-filter: blur(8px);
}

.detail-layout {
    position: relative;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding: 62px 0 74px;
}

.detail-poster {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
    color: rgba(255, 244, 216, 0.68);
    font-size: 0.9rem;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.detail-info h1 {
    font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.detail-one-line {
    max-width: 780px;
    margin: 22px 0 0;
    color: rgba(255, 244, 216, 0.86);
    font-size: 1.13rem;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.detail-meta span {
    padding: 7px 12px;
    color: var(--cream-100);
    background: rgba(255, 244, 216, 0.1);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 800;
}

.detail-tags {
    margin-top: 18px;
}

.player-section {
    padding-top: 58px;
    padding-bottom: 30px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #000;
    border: 1px solid rgba(246, 197, 103, 0.28);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--cocoa-900);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.55));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--cream-100), var(--gold));
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
}

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

.detail-text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding-top: 30px;
}

.text-card {
    padding: 26px;
}

.text-card h2 {
    margin: 0 0 16px;
    color: var(--cream-50);
    font-size: 1.35rem;
}

.text-card p {
    margin: 0;
    color: rgba(255, 244, 216, 0.78);
    font-size: 1rem;
}

.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.site-footer {
    margin-top: 42px;
    padding: 52px max(16px, calc((100% - 1200px) / 2)) 24px;
    background: linear-gradient(180deg, rgba(42, 23, 18, 0.4), rgba(13, 7, 6, 0.98));
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
}

.footer-grid p {
    max-width: 520px;
    color: rgba(255, 244, 216, 0.7);
}

.footer-grid h2 {
    margin: 0 0 12px;
    color: var(--cream-50);
    font-size: 1rem;
}

.footer-grid a:not(.brand) {
    display: block;
    margin: 8px 0;
    color: rgba(255, 244, 216, 0.72);
}

.footer-grid a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 22px;
    color: rgba(255, 244, 216, 0.58);
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
}

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

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

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

    .hero-poster {
        display: none;
    }

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

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

    .split-layout,
    .detail-text,
    .ranking-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .site-header-inner {
        width: min(100% - 24px, 1200px);
    }

    .hero-carousel,
    .hero-content {
        min-height: 650px;
    }

    .hero-content {
        padding-top: 48px;
        padding-bottom: 150px;
    }

    .hero-search {
        bottom: 92px;
        border-radius: 22px;
        flex-direction: column;
    }

    .hero-search button {
        width: 100%;
        padding: 12px 14px;
    }

    .section-wrap {
        padding: 46px 0;
    }

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

    .movie-grid,
    .featured-grid,
    .catalog-grid,
    .mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .movie-card-wide {
        grid-template-columns: 118px minmax(0, 1fr);
    }

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

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

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

    .detail-layout {
        padding: 42px 0 52px;
    }

    .detail-poster {
        max-width: 230px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 1.05rem;
    }

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

    .movie-grid,
    .featured-grid,
    .catalog-grid,
    .mini-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-wide {
        grid-template-columns: 108px minmax(0, 1fr);
    }
}
