:root {
    --bg: #06070d;
    --bg-soft: #0b0f1c;
    --panel: rgba(17, 24, 39, 0.78);
    --panel-strong: rgba(15, 23, 42, 0.94);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-2: #cbd5e1;
    --line: rgba(148, 163, 184, 0.18);
    --gold: #fbbf24;
    --orange: #f97316;
    --red: #ef4444;
    --violet: #8b5cf6;
    --cyan: #22d3ee;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    --radius: 24px;
    --radius-sm: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100%;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 8%, rgba(245, 158, 11, 0.18), transparent 32rem),
        radial-gradient(circle at 88% 12%, rgba(239, 68, 68, 0.14), transparent 28rem),
        linear-gradient(180deg, #090b13 0%, #05070d 36%, #090b13 100%);
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-missing {
    opacity: 0;
}

button,
input,
select {
    font: inherit;
}

main {
    min-height: 70vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(6, 7, 13, 0.82);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 72px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #111827;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--red));
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.25);
}

.brand-text {
    font-size: 20px;
    background: linear-gradient(135deg, #fff7ed, #fbbf24 45%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav,
.mobile-nav {
    align-items: center;
    gap: 6px;
}

.desktop-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    color: var(--muted-2);
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(251, 191, 36, 0.12);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel-strong);
}

.mobile-nav.open {
    display: flex;
    flex-wrap: wrap;
}

.hero {
    position: relative;
    width: min(1440px, calc(100% - 32px));
    margin: 28px auto 0;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.16);
    border-radius: 34px;
    background: #0a0f1e;
    box-shadow: var(--shadow);
}

.hero::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(251, 191, 36, 0.18), transparent 22rem),
        radial-gradient(circle at 82% 40%, rgba(239, 68, 68, 0.18), transparent 24rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(6, 7, 13, 0.92));
}

.hero-slider {
    position: relative;
    z-index: 1;
    min-height: 620px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.26;
    filter: blur(6px) saturate(1.12);
}

.hero-bg::after,
.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 7, 13, 0.96) 0%, rgba(6, 7, 13, 0.74) 46%, rgba(6, 7, 13, 0.48) 100%),
        linear-gradient(180deg, rgba(6, 7, 13, 0.12) 0%, rgba(6, 7, 13, 0.92) 100%);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 420px;
    align-items: center;
    min-height: 620px;
    gap: 54px;
    padding: 70px clamp(26px, 5vw, 88px) 116px;
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(251, 191, 36, 0.22);
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.08);
}

.hero h1,
.sub-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.08em;
}

.hero-desc,
.sub-hero p,
.detail-one-line {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--muted-2);
    font-size: 18px;
    line-height: 1.9;
}

.hero-tags,
.detail-meta-grid,
.card-meta,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
}

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

.hero-tags span,
.detail-meta-grid span,
.tag-row span,
.card-meta span {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.hero-tags span,
.detail-meta-grid span,
.tag-row span {
    padding: 8px 12px;
    color: #e2e8f0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    font-weight: 800;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
    color: #111827;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.28);
}

.btn.ghost {
    color: #fff;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.08);
}

.btn.small {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.14), rgba(239, 68, 68, 0.10));
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
    transform: rotate(2deg);
}

.hero-poster::after,
.poster-link::after,
.detail-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.62) 100%);
    pointer-events: none;
}

.hero-play {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    color: #111827;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 18px 40px rgba(251, 191, 36, 0.24);
}

.hero-bottom {
    position: absolute;
    left: clamp(22px, 5vw, 88px);
    right: clamp(22px, 5vw, 88px);
    bottom: 28px;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr auto;
    align-items: center;
    gap: 18px;
}

.hero-search,
.filter-panel {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.74);
    backdrop-filter: blur(14px);
}

.hero-search {
    padding: 8px;
}

.hero-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    min-width: 0;
    color: #fff;
    outline: none;
    border: 0;
    background: transparent;
}

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

.hero-search button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 18px;
    color: #111827;
    font-weight: 900;
    border: 0;
    border-radius: 999px;
    background: var(--gold);
    cursor: pointer;
}

.hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-categories a {
    padding: 8px 12px;
    color: #e2e8f0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

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

.hero-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.page-section {
    width: min(1440px, calc(100% - 32px));
    margin: 58px auto;
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.section-head p {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.section-more {
    flex: 0 0 auto;
    color: var(--gold);
    font-weight: 800;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.42));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.42);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: radial-gradient(circle at 40% 20%, rgba(251, 191, 36, 0.18), rgba(15, 23, 42, 0.72));
}

.poster-img,
.hero-poster-img,
.hero-bg-img,
.detail-cover,
.detail-backdrop-img,
.mini-poster,
.ranking-img {
    transition: transform 0.35s ease, opacity 0.2s ease;
}

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

.play-chip {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    padding: 7px 11px;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    border-radius: 999px;
    background: var(--gold);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    color: #111827;
    font-weight: 900;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), #fff7ed);
}

.card-body {
    padding: 16px;
}

.card-meta {
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
}

.card-meta span {
    padding: 4px 8px;
}

.movie-card h3 {
    margin: 12px 0 0;
    font-size: 17px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.ranking-info h3 a:hover,
.category-sample-links a:hover {
    color: var(--gold);
}

.movie-card p {
    display: -webkit-box;
    min-height: 48px;
    margin: 10px 0 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    margin-top: 14px;
}

.tag-row span {
    padding: 5px 8px;
    color: #cbd5e1;
    font-size: 12px;
}

.tag-row.large span {
    font-size: 14px;
}

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

.category-tile,
.category-overview-card,
.content-card,
.filter-panel,
.ranking-row,
.player-shell {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.44));
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.category-tile {
    display: block;
    min-height: 210px;
    padding: 18px;
    border-radius: var(--radius);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.4);
}

.category-covers,
.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    margin-bottom: 18px;
}

.category-covers span,
.category-cover-stack span {
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.category-tile strong {
    display: block;
    font-size: 20px;
}

.category-tile p,
.category-overview-card p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.sub-hero {
    width: min(1440px, calc(100% - 32px));
    margin: 28px auto 0;
    padding: clamp(42px, 7vw, 86px);
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 34px;
    background:
        radial-gradient(circle at 20% 18%, rgba(251, 191, 36, 0.16), transparent 28rem),
        radial-gradient(circle at 84% 24%, rgba(139, 92, 246, 0.16), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(6, 7, 13, 0.9));
    box-shadow: var(--shadow);
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 18px;
    border-radius: var(--radius);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-overview-card h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.category-sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.category-sample-links a {
    padding: 7px 10px;
    color: #cbd5e1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 12px;
    margin-bottom: 24px;
    padding: 14px;
    border-radius: var(--radius);
}

.filter-panel label {
    display: grid;
    gap: 8px;
}

.filter-panel span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(6, 7, 13, 0.55);
}

.filter-panel option {
    color: #111827;
}

.empty-state {
    padding: 26px;
    color: var(--muted);
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 56px 86px 1fr 130px;
    align-items: center;
    gap: 18px;
    padding: 12px;
    border-radius: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-row:hover {
    transform: translateX(4px);
    border-color: rgba(251, 191, 36, 0.36);
}

.ranking-number {
    display: grid;
    place-items: center;
    height: 48px;
    color: #111827;
    font-weight: 900;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
}

.ranking-thumb {
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.ranking-info h3 {
    margin: 0;
    font-size: 19px;
}

.ranking-info p {
    margin: 8px 0;
    color: var(--muted);
    line-height: 1.65;
}

.ranking-score {
    text-align: right;
}

.ranking-score strong {
    display: block;
    color: var(--gold);
    font-size: 28px;
    line-height: 1;
}

.ranking-score span {
    color: var(--muted);
    font-size: 13px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    margin-top: -72px;
    padding-top: 72px;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 680px;
    opacity: 0.32;
    filter: blur(5px) saturate(1.1);
}

.detail-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 42px;
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    padding: 96px 0 58px;
}

.detail-poster {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.14), rgba(239, 68, 68, 0.12));
    box-shadow: var(--shadow);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
}

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

.detail-info h1 {
    max-width: 980px;
}

.detail-meta-grid {
    margin-top: 24px;
}

.player-section {
    margin-top: 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 32px;
    background: #000;
}

.main-video {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    color: #fff;
    border: 0;
    background: radial-gradient(circle at 50% 40%, rgba(251, 191, 36, 0.16), rgba(0, 0, 0, 0.68));
    cursor: pointer;
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    color: #111827;
    font-size: 28px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.28);
}

.play-overlay strong {
    font-size: 20px;
}

.player-shell.is-playing .play-overlay {
    display: none;
}

.player-message {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    color: #fecaca;
    font-size: 14px;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.content-card {
    padding: 26px;
    border-radius: var(--radius);
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.content-card p {
    margin: 0;
    color: var(--muted-2);
    line-height: 2;
}

.site-footer {
    margin-top: 80px;
    border-top: 1px solid var(--line);
    background: rgba(3, 6, 18, 0.62);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 34px;
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
}

.footer-brand {
    margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
    color: var(--muted);
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 12px;
}

.site-footer a {
    display: block;
    margin: 6px 0;
}

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

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

    .mobile-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr 300px;
    }

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

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

@media (max-width: 860px) {
    .hero-slider {
        min-height: 760px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        min-height: 760px;
        padding-bottom: 210px;
    }

    .hero-poster {
        width: min(260px, 70vw);
        transform: none;
    }

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

    .hero-dots {
        justify-content: center;
    }

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

    .category-grid,
    .category-overview-grid,
    .detail-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .filter-panel {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .ranking-row {
        grid-template-columns: 42px 70px 1fr;
    }

    .ranking-score {
        grid-column: 3 / 4;
        text-align: left;
    }

    .detail-wrap {
        grid-template-columns: 1fr;
        padding-top: 52px;
    }

    .detail-poster {
        width: min(320px, 78vw);
    }
}

@media (max-width: 560px) {
    .header-inner,
    .mobile-nav,
    .hero,
    .sub-hero,
    .page-section,
    .detail-wrap,
    .footer-grid {
        width: min(100% - 22px, 1440px);
    }

    .brand-text {
        font-size: 17px;
    }

    .hero,
    .sub-hero {
        border-radius: 24px;
    }

    .hero h1,
    .sub-hero h1,
    .detail-info h1 {
        font-size: clamp(34px, 13vw, 54px);
    }

    .hero-desc,
    .sub-hero p,
    .detail-one-line {
        font-size: 15px;
    }

    .movie-grid,
    .compact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .card-body {
        padding: 12px;
    }

    .movie-card h3 {
        font-size: 15px;
    }

    .movie-card p {
        font-size: 13px;
    }
}
