:root {
    --page-bg: #f8fafc;
    --paper: #ffffff;
    --paper-soft: #fff7ed;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --amber: #d97706;
    --amber-strong: #f59e0b;
    --amber-soft: #fef3c7;
    --orange: #ea580c;
    --dark: #111827;
    --shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
    --soft-shadow: 0 14px 35px rgba(17, 24, 39, 0.08);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 48%, #f8fafc 100%);
    color: var(--ink);
}

img {
    max-width: 100%;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    min-height: 72px;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--amber-strong), var(--orange));
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.32);
}

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

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

.nav-link,
.mobile-nav-link {
    color: #374151;
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
    padding: 10px 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: var(--amber);
    background: #fffbeb;
}

.header-search,
.mobile-search,
.big-search {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.header-search input,
.mobile-search input,
.big-search input {
    width: 190px;
    border: 0;
    background: transparent;
    padding: 10px 14px;
    color: var(--ink);
    outline: none;
}

.header-search button,
.mobile-search button,
.big-search button {
    border: 0;
    background: var(--amber);
    color: #ffffff;
    font-weight: 800;
    padding: 10px 16px;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    cursor: pointer;
}

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

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid var(--line);
    background: #ffffff;
}

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

.mobile-nav-link {
    padding: 12px 14px;
}

.hero-carousel {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    background: #111827;
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 7s ease;
}

.hero-slide.is-active img {
    transform: scale(1.12);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
    max-width: 1180px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #fffbeb;
    color: var(--amber);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 12px;
}

.hero-kicker {
    background: rgba(245, 158, 11, 0.18);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.32);
}

.hero-content h1 {
    max-width: 760px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.07em;
    text-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.hero-content p {
    max-width: 620px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
}

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

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

.hero-tags span,
.tag-row span,
.tag-cloud span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    padding: 7px 10px;
    backdrop-filter: blur(10px);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--amber-strong), var(--orange));
    color: #ffffff;
    padding: 13px 22px;
    box-shadow: 0 14px 34px rgba(217, 119, 6, 0.32);
}

.btn-ghost {
    color: #ffffff;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

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

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

.hero-controls button {
    border: 0;
    color: #ffffff;
    cursor: pointer;
}

.hero-controls > button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    font-size: 30px;
    backdrop-filter: blur(12px);
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 30px;
    background: var(--amber-strong);
}

.quick-search-band {
    position: relative;
    z-index: 4;
    margin-top: -42px;
}

.quick-search-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: center;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    padding: 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.quick-search-inner h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 950;
    letter-spacing: -0.06em;
}

.quick-search-inner p {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.7;
}

.big-search input {
    width: 100%;
    padding: 15px 18px;
}

.big-search button {
    padding: 15px 22px;
    white-space: nowrap;
}

.section-block {
    padding: 72px 0;
}

.section-block + .section-block {
    padding-top: 24px;
}

.warm-block {
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

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

.section-head h2,
.ranking-panel h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 950;
    letter-spacing: -0.06em;
}

.section-head p {
    max-width: 720px;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.7;
}

.section-more,
.panel-more,
.text-link {
    color: var(--amber);
    background: #fffbeb;
    padding: 10px 16px;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: #111827;
}

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

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

.poster-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.72) 100%);
}

.poster-play {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.92);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: grid;
    min-width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #fbbf24, #ea580c);
    color: #ffffff;
    font-size: 14px;
    font-style: normal;
    font-weight: 950;
}

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

.movie-title {
    display: -webkit-box;
    min-height: 46px;
    overflow: hidden;
    color: #111827;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.movie-line {
    display: -webkit-box;
    min-height: 42px;
    margin-top: 8px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
}

.movie-meta span {
    border-radius: 999px;
    background: #f3f4f6;
    padding: 5px 8px;
}

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

.tag-row span,
.tag-cloud span {
    background: #fffbeb;
    color: #b45309;
    padding: 6px 8px;
}

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

.movie-card.is-small .movie-title {
    font-size: 15px;
}

.movie-card.is-small .movie-line {
    font-size: 12px;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    border-radius: 28px;
    background: #111827;
    color: #ffffff;
    box-shadow: var(--soft-shadow);
}

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

.category-tile:hover img {
    transform: scale(1.08);
    opacity: 0.78;
}

.category-tile span,
.category-tile strong,
.category-tile em {
    position: absolute;
    left: 22px;
    right: 22px;
    z-index: 2;
}

.category-tile span {
    top: 22px;
    color: #fbbf24;
    font-weight: 950;
}

.category-tile strong {
    bottom: 70px;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.category-tile em {
    bottom: 24px;
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.84);
    font-style: normal;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
}

.ranking-panel {
    position: sticky;
    top: 96px;
    border-radius: 30px;
    background: #111827;
    color: #ffffff;
    padding: 28px;
    box-shadow: var(--shadow);
}

.ranking-panel .section-kicker {
    background: rgba(245, 158, 11, 0.14);
    color: #fbbf24;
}

.rank-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.rank-row {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    padding: 12px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.rank-row span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 12px;
    background: #f59e0b;
    color: #ffffff;
    font-weight: 950;
}

.rank-row strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-row em {
    grid-column: 2;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-style: normal;
}

.panel-more {
    width: 100%;
    margin-top: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-strong), var(--orange));
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 64px;
    background: radial-gradient(circle at top left, #fef3c7, transparent 30%), linear-gradient(135deg, #fff7ed, #ffffff 55%, #eef2ff);
}

.page-hero h1 {
    max-width: 880px;
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 950;
    letter-spacing: -0.07em;
    line-height: 1;
}

.page-hero p {
    max-width: 760px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 800;
}

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

.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-radius: 28px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.category-covers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #111827;
}

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

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

.category-overview-body span {
    color: var(--amber);
    font-weight: 950;
}

.category-overview-body h2 {
    margin-top: 8px;
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -0.05em;
}

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

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 170px 170px auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
    border-radius: 24px;
    background: #ffffff;
    padding: 16px;
    box-shadow: var(--soft-shadow);
}

.search-filter {
    grid-template-columns: minmax(260px, 1fr) 170px 150px 170px auto;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #f9fafb;
    color: var(--ink);
    padding: 12px 14px;
    outline: none;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--amber-strong);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.filter-result {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.movie-card.is-hidden {
    display: none;
}

.detail-top {
    padding: 44px 0 30px;
    background: radial-gradient(circle at top right, #fef3c7, transparent 28%), #ffffff;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}

.detail-main,
.detail-aside {
    min-width: 0;
}

.player-shell {
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: var(--shadow);
}

.player-stage {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-stage video {
    width: 100%;
    height: 100%;
    background: #020617;
    object-fit: contain;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.24), rgba(2, 6, 23, 0.84));
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-orb {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-strong), var(--orange));
    box-shadow: 0 18px 48px rgba(245, 158, 11, 0.36);
    font-size: 32px;
    transform: translateZ(0);
}

.player-cover strong {
    max-width: 80%;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 950;
    letter-spacing: -0.05em;
    text-align: center;
}

.player-cover em {
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
    font-weight: 800;
}

.detail-copy {
    margin-top: 34px;
    border-radius: 28px;
    background: #ffffff;
    padding: 34px;
    box-shadow: var(--soft-shadow);
}

.detail-copy h1 {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 950;
    letter-spacing: -0.07em;
    line-height: 1.05;
}

.detail-copy h2 {
    margin: 30px 0 12px;
    font-size: 24px;
    font-weight: 950;
}

.detail-copy p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.95;
}

.lead-text {
    margin-top: 18px;
    color: #374151 !important;
    font-size: 19px !important;
    font-weight: 700;
}

.detail-poster {
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.detail-info-card {
    margin-top: 22px;
    border-radius: 26px;
    background: #ffffff;
    padding: 24px;
    box-shadow: var(--soft-shadow);
}

.detail-info-card h2 {
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.detail-info-card dl {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.detail-info-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 12px;
}

.detail-info-card dt {
    color: var(--muted);
    font-weight: 800;
}

.detail-info-card dd {
    text-align: right;
    color: #111827;
    font-weight: 900;
}

.tag-cloud {
    margin: 20px 0;
}

.full-btn {
    width: 100%;
}

.related-section {
    background: #f9fafb;
}

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

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

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

    .ranking-panel {
        position: static;
    }

    .detail-aside {
        display: grid;
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 22px;
        align-items: start;
    }

    .detail-info-card {
        margin-top: 0;
    }
}

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

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

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

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 120px;
    }

    .hero-shade {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.86));
    }

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

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

    .category-covers img {
        height: 120px;
    }

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

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

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .header-inner {
        min-height: 64px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

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

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

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-controls {
        bottom: 18px;
    }

    .quick-search-band {
        margin-top: -26px;
    }

    .quick-search-inner,
    .detail-copy {
        padding: 22px;
        border-radius: 24px;
    }

    .section-block {
        padding: 52px 0;
    }

    .movie-grid,
    .compact-grid,
    .hot-grid,
    .listing-grid,
    .category-grid {
        gap: 14px;
    }

    .movie-card {
        border-radius: 18px;
    }

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

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

    .movie-title {
        min-height: 40px;
        font-size: 14px;
    }

    .movie-meta {
        gap: 5px;
    }

    .movie-meta span {
        font-size: 11px;
        padding: 4px 6px;
    }

    .page-hero {
        padding: 54px 0 44px;
    }

    .play-orb {
        width: 68px;
        height: 68px;
        font-size: 26px;
    }
}
