:root {
    color-scheme: light;
    --bg: #fff7ed;
    --bg-soft: #fffaf3;
    --paper: #ffffff;
    --paper-strong: rgba(255, 255, 255, 0.94);
    --text: #1f2937;
    --muted: #64748b;
    --faint: #f1f5f9;
    --line: #fed7aa;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --rose: #f43f5e;
    --gold: #f59e0b;
    --shadow: 0 24px 70px rgba(124, 45, 18, 0.13);
    --soft-shadow: 0 14px 35px rgba(124, 45, 18, 0.1);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(251, 146, 60, 0.18), transparent 34rem),
        linear-gradient(180deg, #fffaf3 0%, #fff7ed 42%, #ffffff 100%);
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(254, 215, 170, 0.75);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(124, 45, 18, 0.08);
}

.header-inner {
    max-width: 1280px;
    min-height: 76px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--rose));
    box-shadow: 0 14px 24px rgba(249, 115, 22, 0.28);
}

.brand-text {
    display: grid;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 22px;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--orange-dark), var(--rose));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

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

.desktop-nav a,
.mobile-panel nav a {
    padding: 10px 14px;
    border-radius: 12px;
    color: #475569;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-panel nav a:hover,
.mobile-panel nav a.active {
    color: var(--orange-dark);
    background: #ffedd5;
}

.top-search,
.mobile-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    background: #ffffff;
}

.top-search input,
.mobile-search input {
    width: 190px;
    border: 0;
    outline: 0;
    padding: 10px 12px 10px 16px;
    color: var(--text);
    background: transparent;
}

.top-search button,
.mobile-search button {
    border: 0;
    padding: 10px 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--rose));
    font-weight: 800;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #ffedd5;
}

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

.mobile-panel {
    padding: 16px 24px 22px;
    border-top: 1px solid #fed7aa;
    background: rgba(255, 255, 255, 0.97);
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

main {
    min-height: 70vh;
}

.hero-carousel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
    align-items: center;
    gap: 42px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 88px 24px 76px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(26px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-bg,
.hero-layer {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 620px;
}

.hero-bg {
    object-fit: cover;
    filter: saturate(1.08) contrast(1.08);
    opacity: 0.52;
}

.hero-layer {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.72) 46%, rgba(124, 45, 18, 0.38) 100%),
        radial-gradient(circle at 72% 22%, rgba(249, 115, 22, 0.44), transparent 32rem);
}

.hero-content,
.hero-poster {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--orange-dark);
    background: #ffedd5;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.hero-kicker {
    color: #ffffff;
    background: rgba(249, 115, 22, 0.86);
    box-shadow: 0 14px 34px rgba(249, 115, 22, 0.28);
}

.hero-content h1,
.hero-content h2 {
    max-width: 820px;
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -0.06em;
}

.hero-movie-title {
    font-size: clamp(26px, 3vw, 40px) !important;
    color: #fed7aa;
}

.hero-content p {
    max-width: 720px;
    margin: 0 0 24px;
    color: #ffedd5;
    font-size: clamp(16px, 2vw, 20px);
}

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

.hero-tags span,
.detail-meta span,
.card-meta span,
.tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 13px;
    font-weight: 800;
}

.hero-tags span,
.detail-meta span,
.tag {
    padding: 7px 12px;
}

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

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

.btn,
.section-link,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
    padding: 12px 20px;
}

.btn:hover,
.section-link:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--rose));
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.28);
}

.btn.ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.btn.soft {
    color: #9a3412;
    background: #ffedd5;
}

.hero-poster {
    justify-self: end;
    width: min(100%, 390px);
    border: 12px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

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

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

.hero-prev,
.hero-next,
.hero-dot {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.hero-prev,
.hero-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
}

.hero-dot.is-active {
    width: 28px;
    background: #ffffff;
}

.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px 0;
}

.warm-section {
    max-width: none;
    margin-top: 72px;
    padding: 72px max(24px, calc((100vw - 1280px) / 2 + 24px));
    background: linear-gradient(135deg, rgba(255, 237, 213, 0.78), rgba(255, 241, 242, 0.82));
}

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

.section-heading.left-only {
    align-items: start;
}

.section-heading h2,
.page-hero h1,
.ranking-hero h1,
.detail-info h1,
.copy-card h2 {
    margin: 0;
    color: #111827;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.section-heading h2,
.page-hero h1,
.ranking-hero h1 {
    font-size: clamp(30px, 4vw, 48px);
}

.section-heading p,
.page-hero p,
.ranking-hero p {
    max-width: 780px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.section-link,
.text-link {
    min-height: auto;
    color: var(--orange-dark);
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(254, 215, 170, 0.78);
    border-radius: var(--radius);
    background: var(--paper-strong);
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0f172a;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.55s ease, opacity 0.25s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.74));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(249, 115, 22, 0.88);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-mark {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.card-badge,
.rank-mark {
    position: absolute;
    top: 12px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.card-badge {
    right: 12px;
    padding: 6px 10px;
    background: linear-gradient(135deg, var(--orange), var(--rose));
}

.rank-mark {
    left: 12px;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: rgba(15, 23, 42, 0.82);
}

.card-body {
    padding: 15px;
}

.card-body h3 {
    margin: 0 0 9px;
    color: #111827;
    font-size: 17px;
    line-height: 1.35;
}

.card-body h3 a:hover,
.horizontal-info h3 a:hover {
    color: var(--orange-dark);
}

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

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

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

.category-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 24px;
    color: #ffffff;
    box-shadow: var(--soft-shadow);
}

.category-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.78));
}

.category-card strong,
.category-card small {
    position: relative;
    z-index: 2;
    display: block;
    padding: 0 18px;
}

.category-card strong {
    margin-top: 102px;
    font-size: 22px;
}

.category-card small {
    margin-top: 6px;
    color: #ffedd5;
    font-size: 13px;
}

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

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

.horizontal-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 16px;
    padding: 12px;
    border: 1px solid rgba(254, 215, 170, 0.8);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.horizontal-poster {
    overflow: hidden;
    border-radius: 16px;
}

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

.horizontal-info {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.horizontal-info h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.35;
}

.horizontal-info p {
    display: -webkit-box;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.list-rank {
    display: inline-grid;
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--rose));
    font-weight: 900;
}

.page-hero,
.ranking-hero,
.detail-hero,
.player-section,
.breadcrumb {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.page-hero.slim {
    padding-top: 72px;
    padding-bottom: 20px;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(254, 215, 170, 0.8);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.category-covers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 220px;
    overflow: hidden;
}

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

.category-overview-body {
    padding: 28px;
}

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

.category-overview-body p {
    margin: 0 0 18px;
    color: var(--muted);
}

.toolbar,
.search-panel {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid rgba(254, 215, 170, 0.8);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
}

.toolbar-search {
    display: grid;
    gap: 7px;
    min-width: min(100%, 360px);
    font-weight: 800;
    color: #9a3412;
}

.toolbar-search input,
.search-panel input {
    width: 100%;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    outline: 0;
    padding: 12px 16px;
    color: var(--text);
    background: #ffffff;
}

.toolbar-search input:focus,
.search-panel input:focus,
.top-search input:focus,
.mobile-search input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.search-panel input {
    max-width: 460px;
}

.filter-chip {
    border: 0;
    padding: 9px 13px;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-weight: 900;
}

.filter-chip.is-active,
.filter-chip:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--rose));
}

.empty-state {
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    color: var(--muted);
    background: #ffffff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 28px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--orange-dark);
    font-weight: 800;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(250px, 340px) minmax(0, 1fr);
    gap: 38px;
    align-items: center;
    padding-top: 36px;
    padding-bottom: 42px;
}

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

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

.detail-info h1 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 54px);
}

.detail-info .lead {
    max-width: 820px;
    margin: 0 0 20px;
    color: #475569;
    font-size: 19px;
}

.detail-meta,
.tag-row {
    margin-bottom: 18px;
}

.player-section {
    padding-top: 18px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.28);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.58), rgba(124, 45, 18, 0.35));
    cursor: pointer;
}

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

.player-play {
    display: grid;
    width: 90px;
    height: 90px;
    margin: 0 auto 12px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--rose));
    font-size: 34px;
    box-shadow: 0 22px 46px rgba(249, 115, 22, 0.3);
}

.player-overlay strong {
    display: block;
    font-size: 22px;
}

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

.copy-card {
    padding: 32px;
    border: 1px solid rgba(254, 215, 170, 0.82);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.copy-card h2 {
    margin-bottom: 14px;
    font-size: 28px;
}

.copy-card p {
    margin: 0;
    color: #475569;
    font-size: 16px;
}

.ranking-hero {
    display: grid;
    grid-template-columns: minmax(250px, 420px) minmax(0, 1fr);
    gap: 38px;
    align-items: center;
    padding-top: 72px;
}

.ranking-hero img {
    width: 100%;
    aspect-ratio: 16 / 12;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.site-footer {
    margin-top: 92px;
    color: #e2e8f0;
    background: linear-gradient(135deg, #111827, #1e293b);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    color: #ffffff;
    font-size: 24px;
}

.footer-inner p {
    max-width: 620px;
    margin: 10px 0 0;
    color: #cbd5e1;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    color: #fed7aa;
    font-weight: 800;
}

.copyright {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    color: #94a3b8;
    text-align: center;
}

.is-filtered-out,
.is-search-hidden {
    display: none !important;
}

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

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

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

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

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

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

    .header-inner {
        min-height: 66px;
        padding: 0 18px;
    }

    .brand-text strong {
        font-size: 20px;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 64px;
    }

    .hero-bg,
    .hero-layer {
        height: 760px;
    }

    .hero-poster {
        justify-self: start;
        width: min(72vw, 260px);
        border-radius: 24px;
    }

    .section-heading,
    .toolbar,
    .search-panel,
    .footer-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .detail-hero,
    .ranking-hero,
    .detail-copy,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

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

    .category-overview-grid,
    .ranking-list,
    .ranking-list.large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .content-section,
    .page-hero,
    .ranking-hero,
    .detail-hero,
    .player-section,
    .breadcrumb {
        padding-left: 16px;
        padding-right: 16px;
    }

    .warm-section {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .card-body {
        padding: 12px;
    }

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

    .horizontal-card {
        grid-template-columns: 94px minmax(0, 1fr);
    }

    .horizontal-poster img {
        height: 132px;
    }

    .hero-actions,
    .hero-tags,
    .filter-chips {
        gap: 8px;
    }

    .btn {
        width: 100%;
    }

    .player-play {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }

    .copy-card {
        padding: 24px;
    }
}
