* {
    box-sizing: border-box;
}

:root {
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --sky-700: #0369a1;
    --blue-50: #eff6ff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 10px 24px rgba(15, 23, 42, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--sky-50) 0%, var(--white) 36%, var(--gray-50) 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(226, 232, 240, 0.82);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--gray-900);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--white);
    background: linear-gradient(135deg, var(--sky-500), #2563eb);
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.28);
}

.brand-name {
    font-size: 22px;
    letter-spacing: -0.04em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 600;
}

.nav-links a {
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--sky-600);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: var(--gray-100);
    border-radius: 12px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--gray-700);
    border-radius: 99px;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--gray-900);
}

.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.02);
}

.hero-shade,
.detail-backdrop div {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.52) 42%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 48px 20px 80px;
}

.hero-copy {
    max-width: 720px;
    margin: 0 auto;
    transform: translateX(-240px);
}

.eyebrow,
.eyebrow-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-dark {
    color: var(--sky-600);
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    color: var(--white);
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero p {
    max-width: 640px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.8;
}

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

.hero-tags span,
.detail-tags a,
.card-tags span,
.footer-tags a {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    color: var(--sky-700);
    background: var(--sky-50);
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.hero-actions,
.section-heading,
.search-row,
.card-meta,
.detail-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.btn-primary,
.search-row button {
    color: var(--white);
    background: var(--sky-500);
    box-shadow: 0 16px 30px rgba(14, 165, 233, 0.28);
}

.btn-primary:hover,
.search-row button:hover {
    background: var(--sky-600);
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.hero-dots {
    position: absolute;
    right: 48px;
    bottom: 48px;
    display: flex;
    gap: 9px;
}

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

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

.search-panel {
    max-width: 1160px;
    margin: -36px auto 0;
    padding: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.home-search {
    position: relative;
    z-index: 5;
}

.search-form label,
.filter-grid span {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-700);
    font-weight: 800;
}

.search-row input,
.filter-grid input,
.filter-grid select {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    color: var(--gray-900);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    outline: 0;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-row input:focus,
.filter-grid input:focus,
.filter-grid select:focus {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.quick-categories,
.category-pills-large {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.category-pill,
.category-pills-large a,
.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.category-pill:hover,
.category-pills-large a:hover,
.footer-links a:hover {
    color: var(--sky-700);
    background: var(--sky-50);
    transform: translateY(-2px);
}

.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
}

.section-heading {
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-heading.single {
    justify-content: flex-start;
}

.section-heading h2 {
    margin: 0;
    color: var(--gray-900);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.section-heading a {
    color: var(--sky-600);
    font-weight: 800;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}

.card-poster {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--gray-100);
}

.movie-card-wide {
    flex-direction: row;
}

.movie-card-wide .card-poster {
    width: 220px;
    aspect-ratio: 4 / 3;
    flex: 0 0 auto;
}

.movie-card-small .card-body h2 {
    font-size: 16px;
}

.card-poster img,
.compact-card img,
.category-thumb-row img,
.ranking-row img,
.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.poster-badge,
.poster-year {
    position: absolute;
    top: 12px;
    padding: 5px 9px;
    color: var(--white);
    background: rgba(14, 165, 233, 0.92);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.poster-badge {
    left: 12px;
}

.poster-year {
    right: 12px;
    background: rgba(17, 24, 39, 0.72);
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.card-body h2 {
    display: -webkit-box;
    min-height: 44px;
    margin: 0;
    overflow: hidden;
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.card-meta {
    flex-wrap: wrap;
    gap: 7px;
    color: var(--gray-500);
    font-size: 12px;
}

.card-meta span {
    padding: 4px 8px;
    background: var(--gray-50);
    border-radius: 999px;
}

.card-tags span {
    padding: 5px 9px;
}

.section-band {
    background: linear-gradient(90deg, var(--sky-50), var(--blue-50));
}

.soft-band {
    background: linear-gradient(180deg, var(--white), var(--sky-50));
}

.band-inner {
    padding-top: 70px;
    padding-bottom: 70px;
}

.category-strip {
    margin-top: 34px;
    padding: 26px;
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 26px;
    box-shadow: var(--shadow-card);
}

.compact-heading {
    margin-bottom: 20px;
}

.compact-heading h2 {
    font-size: 24px;
}

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

.compact-card {
    display: grid;
    grid-template-rows: 150px auto;
    overflow: hidden;
    background: var(--gray-50);
    border-radius: 16px;
    color: var(--gray-900);
    font-weight: 800;
}

.compact-card img {
    height: 150px;
}

.compact-card span {
    display: -webkit-box;
    padding: 10px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 28px;
}

.ranking-list,
.latest-list,
.side-related {
    display: grid;
    gap: 12px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 44px 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-card);
}

.ranking-num {
    color: var(--sky-600);
    font-size: 20px;
    font-weight: 900;
}

.ranking-row img {
    width: 58px;
    height: 76px;
    border-radius: 12px;
}

.ranking-title {
    overflow: hidden;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-kind {
    color: var(--gray-500);
    font-size: 13px;
}

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

.page-hero {
    position: relative;
    display: grid;
    min-height: 360px;
    place-items: center;
    padding: 86px 20px;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 15% 20%, rgba(14, 165, 233, 0.42), transparent 34%), linear-gradient(135deg, #0f172a 0%, #0c4a6e 55%, #111827 100%);
}

.compact-page-hero {
    min-height: 300px;
}

.category-page-hero {
    background: radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.42), transparent 30%), linear-gradient(135deg, #0f172a 0%, #075985 45%, #172554 100%);
}

.page-hero div {
    max-width: 980px;
    text-align: center;
}

.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 6vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.8;
}

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

.category-overview-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 26px;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-thumb-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 140px;
    overflow: hidden;
}

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

.category-overview-body h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.category-overview-body p {
    margin: 0 0 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

.category-overview-body span {
    color: var(--sky-600);
    font-weight: 900;
}

.list-filter-panel {
    margin-top: -28px;
}

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

.wide-filter-grid {
    grid-template-columns: minmax(0, 1fr) 160px 160px 160px;
}

.no-result {
    display: none;
    padding: 60px 20px;
    color: var(--gray-500);
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 22px;
}

.no-result.is-visible {
    display: block;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--gray-900);
}

.detail-backdrop {
    position: absolute;
    inset: 0;
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.04);
}

.detail-hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 44px 20px 70px;
}

.breadcrumb,
.breadcrumb-sep {
    display: inline-flex;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

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

.breadcrumb-sep {
    margin-left: 8px;
    margin-right: 8px;
}

.detail-main {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 6px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.detail-info h1 {
    max-width: 880px;
    margin: 0 0 18px;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.detail-info p {
    max-width: 780px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.8;
}

.detail-meta {
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.detail-meta span {
    padding: 8px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-weight: 700;
}

.detail-tags {
    margin-bottom: 24px;
}

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

.detail-content,
.detail-side {
    display: grid;
    gap: 22px;
}

.player-card,
.detail-text-card,
.side-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

.player-card h2,
.detail-text-card h2,
.side-card h2 {
    margin: 0 0 16px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.detail-text-card p {
    margin: 0;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.95;
}

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

.player-shell video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    cursor: pointer;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    color: var(--white);
    background: radial-gradient(circle, rgba(14, 165, 233, 0.28), rgba(0, 0, 0, 0.42));
    border: 0;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-start span {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    padding-left: 5px;
    color: var(--sky-600);
    background: var(--white);
    border-radius: 999px;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
    font-size: 30px;
}

.player-start strong {
    font-size: 18px;
}

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

.side-card dl {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px 14px;
    margin: 0;
}

.side-card dt {
    color: var(--gray-500);
    font-weight: 800;
}

.side-card dd {
    margin: 0;
    color: var(--gray-900);
    line-height: 1.6;
}

.side-related .compact-card {
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: none;
    align-items: center;
}

.side-related .compact-card img {
    width: 72px;
    height: 92px;
}

.site-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.footer-brand {
    color: var(--white);
    font-size: 24px;
}

.footer-inner p {
    max-width: 420px;
    line-height: 1.8;
}

.footer-inner h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 18px;
}

.footer-links a {
    min-height: 34px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.footer-tags a {
    color: rgba(255, 255, 255, 0.82);
    background: rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.24);
}

.footer-bottom {
    padding: 18px 20px;
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1120px) {
    .hero-copy {
        transform: none;
        margin-left: 0;
    }

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

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

    .category-overview-grid,
    .footer-inner,
    .two-column,
    .detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .mobile-toggle {
        display: inline-block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--gray-200);
    }

    .nav-links.is-open {
        display: flex;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        padding-bottom: 68px;
    }

    .hero-dots {
        right: 20px;
        bottom: 26px;
    }

    .search-panel {
        margin-left: 16px;
        margin-right: 16px;
    }

    .search-row,
    .section-heading,
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .movie-card-wide {
        flex-direction: column;
    }

    .movie-card-wide .card-poster {
        width: 100%;
        aspect-ratio: 3 / 4;
    }

    .filter-grid,
    .wide-filter-grid,
    .full-ranking {
        grid-template-columns: 1fr;
    }

    .ranking-row {
        grid-template-columns: 38px 54px minmax(0, 1fr);
    }

    .ranking-kind {
        display: none;
    }

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

    .detail-poster {
        width: min(260px, 80vw);
    }
}

@media (max-width: 560px) {
    .brand-name {
        font-size: 19px;
    }

    .hero h1,
    .detail-info h1,
    .page-hero h1 {
        font-size: 34px;
    }

    .hero p,
    .detail-info p,
    .page-hero p {
        font-size: 16px;
    }

    .section-wrap {
        padding: 48px 16px;
    }

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

    .card-body h2 {
        min-height: auto;
    }

    .category-strip,
    .player-card,
    .detail-text-card,
    .side-card {
        padding: 18px;
        border-radius: 20px;
    }
}
