:root {
    --peach-50: #fff5f2;
    --peach-100: #ffe5e0;
    --peach-200: #ffd4e5;
    --peach-300: #ffc9b9;
    --peach-400: #ffb5a7;
    --peach-500: #ffa07a;
    --peach-600: #ff8fa3;
    --pink-500: #ff6f91;
    --ink: #27212b;
    --muted: #6b6470;
    --card: rgba(255, 255, 255, 0.86);
    --border: rgba(255, 181, 167, 0.28);
    --shadow: 0 20px 50px rgba(255, 159, 122, 0.24);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 181, 167, 0.32), transparent 32rem),
        radial-gradient(circle at 88% 12%, rgba(255, 143, 163, 0.22), transparent 34rem),
        linear-gradient(135deg, #fff8f6 0%, #fff2f7 48%, #fffaf4 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(255, 181, 167, 0.16);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--peach-500), var(--pink-500));
    box-shadow: 0 12px 24px rgba(255, 111, 145, 0.32);
}

.brand-text {
    font-size: 1.45rem;
    background: linear-gradient(135deg, #ff9999, #ff8fa3, #ffb6c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: #4d4652;
    font-weight: 650;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--peach-500), var(--pink-500));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px;
}

.header-search input {
    width: 190px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 8px 8px 8px 12px;
}

.header-search button,
.search-panel button,
.filter-bar button {
    border: 0;
    color: white;
    background: linear-gradient(135deg, var(--peach-500), var(--pink-500));
    border-radius: 999px;
    padding: 9px 16px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(255, 111, 145, 0.24);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: var(--peach-100);
    color: var(--pink-500);
    cursor: pointer;
}

.quick-cats {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 12px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.quick-cats a {
    color: #6f5d6b;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 14px;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.quick-cats a:hover {
    color: var(--pink-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 181, 167, 0.22);
}

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

.hero-carousel {
    width: min(1260px, calc(100% - 32px));
    margin: 28px auto 0;
    min-height: 590px;
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #2f2231;
}

.hero-stage {
    position: relative;
    min-height: 590px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.1fr 340px;
    gap: 42px;
    align-items: center;
    padding: 74px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(16px) saturate(1.2);
    transform: scale(1.08);
    opacity: 0.52;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(39, 18, 32, 0.94) 0%, rgba(67, 34, 48, 0.74) 55%, rgba(255, 143, 163, 0.22) 100%),
        radial-gradient(circle at 72% 22%, rgba(255, 181, 167, 0.38), transparent 18rem);
}

.hero-copy,
.hero-card {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.92rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.hero-copy h1 {
    color: white;
    font-size: clamp(2.3rem, 6vw, 5.4rem);
    line-height: 1.02;
    margin: 26px 0 20px;
    letter-spacing: -0.05em;
}

.hero-copy p {
    color: rgba(255, 255, 255, 0.84);
    max-width: 720px;
    font-size: 1.15rem;
    line-height: 1.9;
    margin: 0;
}

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

.hero-tags {
    margin: 24px 0 30px;
}

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #8f3f57;
    background: linear-gradient(135deg, var(--peach-100), #fff3f8);
    border: 1px solid var(--border);
    padding: 7px 12px;
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-tags span {
    color: white;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
}

.hero-actions,
.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.text-link,
.rank-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--peach-500), var(--pink-500));
    padding: 13px 24px;
    box-shadow: 0 14px 32px rgba(255, 111, 145, 0.38);
}

.btn-secondary,
.btn-ghost {
    padding: 12px 22px;
    color: white;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(10px);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.text-link:hover,
.rank-play:hover {
    transform: translateY(-2px);
}

.hero-card {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.hero-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card span {
    position: relative;
    margin: 18px;
    color: white;
    background: rgba(0, 0, 0, 0.42);
    border-radius: 999px;
    padding: 10px 16px;
    align-self: flex-start;
    backdrop-filter: blur(10px);
}

.hero-dots {
    position: absolute;
    left: 74px;
    bottom: 38px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

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

.hero-dot.active {
    width: 36px;
    background: white;
}

.search-panel,
.page-hero,
.filter-bar,
.story-card,
.category-card-large,
.movie-card,
.rank-row {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 16px 42px rgba(255, 181, 167, 0.18);
    backdrop-filter: blur(14px);
}

.search-panel {
    margin: -46px auto 42px;
    width: min(1080px, calc(100% - 32px));
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 480px);
    gap: 24px;
    align-items: center;
    border-radius: 26px;
    padding: 24px;
}

.search-panel h2,
.section-head h2,
.page-hero h1,
.story-card h2,
.category-card-large h2,
.detail-copy h1 {
    margin: 0;
    letter-spacing: -0.03em;
}

.search-panel p,
.section-head p,
.page-hero p,
.movie-info p,
.story-card p,
.category-card-large p,
.detail-copy p {
    color: var(--muted);
    line-height: 1.82;
}

.search-panel form,
.filter-bar {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-panel input,
.filter-bar input,
.filter-bar select {
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 999px;
    outline: 0;
    background: rgba(255, 255, 255, 0.88);
    padding: 0 16px;
}

.search-panel input,
.filter-bar input {
    flex: 1;
    min-width: 0;
}

.content-section {
    margin-top: 64px;
}

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

.section-head > div {
    position: relative;
    padding-left: 64px;
}

.section-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: white;
    background: linear-gradient(135deg, var(--peach-500), var(--pink-500));
    box-shadow: 0 14px 28px rgba(255, 111, 145, 0.24);
}

.section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-head p {
    margin: 7px 0 0;
}

.section-head a,
.text-link {
    color: var(--pink-500);
    font-weight: 800;
}

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

.category-tile {
    position: relative;
    display: block;
    min-height: 230px;
    overflow: hidden;
    border-radius: 24px;
    background: #2f2231;
    box-shadow: 0 16px 38px rgba(255, 181, 167, 0.22);
    transition: all 0.28s ease;
}

.category-tile:hover,
.movie-card:hover,
.rank-row:hover,
.category-card-large:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(255, 159, 122, 0.28);
}

.category-tile img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.45s ease;
}

.category-tile:hover img,
.movie-poster:hover img,
.rank-thumb:hover img {
    transform: scale(1.08);
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 20, 30, 0.84) 100%);
}

.category-tile span,
.category-tile p {
    position: absolute;
    z-index: 1;
    left: 18px;
    right: 18px;
}

.category-tile span {
    bottom: 70px;
    color: white;
    font-weight: 900;
    font-size: 1.24rem;
}

.category-tile p {
    bottom: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    font-size: 0.88rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-grid {
    display: grid;
    gap: 20px;
}

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

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

.movie-card {
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.28s ease;
}

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

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

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

.play-dot {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--pink-500);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.movie-info {
    padding: 18px;
}

.movie-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 900;
    font-size: 1.08rem;
    color: var(--ink);
}

.movie-title:hover,
.rank-main h2 a:hover,
.category-card-large h2 a:hover {
    color: var(--pink-500);
}

.movie-info p {
    min-height: 3.2em;
    margin: 10px 0 12px;
    font-size: 0.92rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #7a6977;
    font-size: 0.86rem;
    margin-bottom: 12px;
}

.movie-meta span,
.detail-meta span {
    background: rgba(255, 229, 224, 0.7);
    border-radius: 999px;
    padding: 5px 9px;
}

.page-hero {
    border-radius: 32px;
    padding: 54px;
    overflow: hidden;
    position: relative;
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    right: -120px;
    top: -150px;
    background: radial-gradient(circle, rgba(255, 143, 163, 0.26), transparent 70%);
}

.page-hero .eyebrow {
    color: var(--pink-500);
    background: rgba(255, 229, 224, 0.72);
    border-color: var(--border);
}

.page-hero h1 {
    position: relative;
    font-size: clamp(2.2rem, 5vw, 4.3rem);
    margin-top: 18px;
}

.page-hero p {
    position: relative;
    max-width: 760px;
    font-size: 1.08rem;
}

.page-actions .btn-secondary {
    color: var(--pink-500);
    background: rgba(255, 255, 255, 0.76);
    border-color: var(--border);
}

.filter-bar {
    margin: 26px 0;
    border-radius: 24px;
    padding: 16px;
    flex-wrap: wrap;
}

.category-list-large {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.category-card-large {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 22px;
    border-radius: 26px;
    padding: 20px;
    transition: all 0.28s ease;
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    min-height: 150px;
    border-radius: 18px;
    overflow: hidden;
}

.category-cover-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 72px;
}

.category-card-large h2 {
    font-size: 1.45rem;
    margin-top: 4px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 56px 96px 1fr auto;
    gap: 16px;
    align-items: center;
    border-radius: 22px;
    padding: 14px;
    transition: all 0.25s ease;
}

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

.rank-thumb {
    display: block;
    width: 96px;
    height: 72px;
    overflow: hidden;
    border-radius: 16px;
}

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

.rank-main h2 {
    font-size: 1.08rem;
    margin: 0 0 8px;
}

.rank-main p {
    color: var(--muted);
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rank-play {
    color: white;
    background: linear-gradient(135deg, var(--peach-500), var(--pink-500));
    padding: 10px 18px;
}

.detail-hero {
    border-radius: 34px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #7d6a77;
    font-size: 0.92rem;
    margin-bottom: 20px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 28px;
    align-items: stretch;
}

.player-shell {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    background: #170f17;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

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

.watch-player {
    object-fit: contain;
    z-index: 1;
    background: #080508;
}

.player-cover {
    z-index: 2;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #120d12;
}

.player-cover.hidden {
    display: none;
}

.player-cover img {
    object-fit: cover;
    filter: brightness(0.62);
}

.big-play {
    position: relative;
    z-index: 3;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    margin: auto;
    border-radius: 50%;
    color: var(--pink-500);
    background: rgba(255, 255, 255, 0.92);
    font-size: 2.2rem;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.detail-copy {
    padding: 26px 14px 26px 0;
}

.detail-copy .eyebrow {
    color: var(--pink-500);
    background: rgba(255, 229, 224, 0.72);
    border-color: var(--border);
}

.detail-copy h1 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    margin-top: 20px;
}

.detail-copy .lead {
    font-size: 1.04rem;
}

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

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 28px;
}

.story-card {
    border-radius: 26px;
    padding: 28px;
}

.story-card h2 {
    font-size: 1.55rem;
}

.story-card p {
    margin-bottom: 0;
}

.site-footer {
    margin-top: 42px;
    padding: 46px 0 28px;
    background: rgba(255, 255, 255, 0.58);
    border-top: 1px solid var(--border);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 1.2fr;
    gap: 48px;
}

.footer-brand p {
    color: var(--muted);
    line-height: 1.8;
    max-width: 520px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-columns h3 {
    margin: 0 0 14px;
}

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

.footer-columns a {
    color: var(--muted);
}

.footer-columns a:hover {
    color: var(--pink-500);
}

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: #8a7887;
    text-align: center;
    font-size: 0.92rem;
}

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

@media (max-width: 1080px) {
    .header-search {
        display: none;
    }

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

    .hero-slide {
        grid-template-columns: 1fr 280px;
        padding: 54px;
    }

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

    .detail-copy {
        padding: 0 4px 8px;
    }
}

@media (max-width: 820px) {
    .header-inner {
        min-height: 68px;
    }

    .site-nav {
        position: absolute;
        top: 68px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 18px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
        border: 1px solid var(--border);
    }

    .site-nav.open {
        display: flex;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
        margin-left: auto;
    }

    .quick-cats {
        padding-bottom: 10px;
    }

    .hero-carousel,
    .hero-stage {
        min-height: 670px;
    }

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

    .hero-card {
        min-height: 260px;
    }

    .hero-dots {
        left: 34px;
        bottom: 24px;
    }

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

    .search-panel form,
    .filter-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .category-grid,
    .movie-grid--compact,
    .movie-grid--wide,
    .category-list-large,
    .detail-content,
    .footer-inner,
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .category-card-large {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: 42px 80px 1fr;
    }

    .rank-play {
        grid-column: 2 / -1;
    }

    .player-shell {
        min-height: 300px;
    }
}

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

    .page,
    .hero-carousel,
    .search-panel,
    .header-inner,
    .quick-cats {
        width: min(100% - 20px, 1180px);
    }

    .page-hero,
    .story-card {
        padding: 26px;
    }

    .hero-carousel,
    .hero-stage {
        min-height: 620px;
        border-radius: 24px;
    }

    .hero-slide {
        padding: 24px;
    }

    .hero-copy h1 {
        font-size: 2.25rem;
    }

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

    .movie-info {
        padding: 14px;
    }

    .movie-info p,
    .tag-row {
        display: none;
    }

    .rank-main p {
        display: none;
    }
}
