:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --pink-600: #db2777;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.14);
    --radius-lg: 18px;
    --radius-xl: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--gray-900);
    background: var(--gray-50);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

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

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.logo {
    font-size: 24px;
    background: linear-gradient(90deg, var(--rose-500), var(--pink-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--pink-600));
    box-shadow: 0 12px 24px rgba(244, 63, 94, 0.25);
    font-size: 14px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.nav-link,
.mobile-link {
    color: var(--gray-700);
    font-size: 15px;
    font-weight: 650;
    transition: color 0.18s ease, background 0.18s ease;
}

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

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-control,
.search-input {
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    background: var(--white);
    color: var(--gray-900);
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.header-search input {
    width: 210px;
    padding: 10px 14px;
}

.header-search button,
.mobile-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--white);
    background: linear-gradient(90deg, var(--rose-500), var(--pink-600));
    font-weight: 700;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-control:focus,
.search-input:focus {
    border-color: var(--rose-500);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.14);
}

.menu-toggle {
    display: none;
    border: 0;
    background: var(--gray-100);
    color: var(--gray-800);
    border-radius: 12px;
    width: 42px;
    height: 42px;
}

.mobile-menu {
    display: none;
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 0 0 18px;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu nav {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.mobile-link {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--gray-50);
}

.mobile-search input {
    width: 100%;
    padding: 10px 14px;
}

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(244, 63, 94, 0.16), transparent 30%),
        linear-gradient(180deg, #fff7f8 0%, #ffffff 52%, var(--gray-50) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(251, 113, 133, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 113, 133, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 38%, rgba(255, 255, 255, 0.24) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: center;
}

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

.hero-content {
    width: min(100% - 32px, var(--container));
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
    gap: 36px;
    align-items: center;
    padding: 94px 0 72px;
}

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

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: var(--rose-600);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--rose-100);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    font-weight: 700;
}

.hero h1 {
    margin: 22px 0 18px;
    color: var(--gray-900);
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero h1 span {
    display: block;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--rose-500), var(--pink-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 620px;
    margin: 0 0 28px;
    color: var(--gray-600);
    font-size: 20px;
}

.hero-actions,
.section-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.button-primary,
.button-secondary,
.button-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button-primary {
    color: var(--white);
    background: linear-gradient(90deg, var(--rose-500), var(--pink-600));
    box-shadow: 0 16px 28px rgba(244, 63, 94, 0.24);
}

.button-secondary {
    color: var(--gray-800);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--gray-200);
}

.button-soft {
    color: var(--rose-600);
    background: var(--rose-50);
}

.button-primary:hover,
.button-secondary:hover,
.button-soft:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 46px;
    color: var(--gray-600);
}

.hero-stats strong {
    display: block;
    color: var(--gray-900);
    font-size: 30px;
    line-height: 1;
}

.hero-panel {
    position: relative;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
}

.hero-panel img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffe4e6, #fce7f3);
}

.hero-panel-card {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    padding: 18px;
    color: var(--white);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.10), rgba(17, 24, 39, 0.86));
}

.hero-panel-card h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.hero-panel-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

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

.hero-dot,
.hero-arrow {
    border: 0;
    background: rgba(255, 255, 255, 0.82);
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

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

.hero-dot.is-active {
    width: 32px;
    background: linear-gradient(90deg, var(--rose-500), var(--pink-600));
}

.hero-arrow {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    font-size: 18px;
}

.section {
    padding: 72px 0;
}

.section-white {
    background: var(--white);
}

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

.section-header.center {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
}

.section-header h1,
.section-header h2,
.page-title h1,
.detail-title h1 {
    margin: 0;
    color: var(--gray-900);
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.section-header h2,
.page-title h1 {
    font-size: clamp(30px, 4vw, 46px);
}

.section-header p,
.page-title p {
    margin: 10px 0 0;
    color: var(--gray-600);
    font-size: 17px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
}

.category-card {
    min-height: 154px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

.category-card .icon {
    font-size: 34px;
}

.category-card strong {
    display: block;
    font-size: 22px;
}

.category-card span:last-child {
    opacity: 0.86;
}

.gradient-rose {
    background: linear-gradient(135deg, #fb7185, #db2777);
}

.gradient-blue {
    background: linear-gradient(135deg, #60a5fa, #7c3aed);
}

.gradient-purple {
    background: linear-gradient(135deg, #a78bfa, #ec4899);
}

.gradient-amber {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.gradient-emerald {
    background: linear-gradient(135deg, #34d399, #0ea5e9);
}

.gradient-indigo {
    background: linear-gradient(135deg, #818cf8, #4f46e5);
}

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

.movie-grid.featured {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.movie-card {
    min-width: 0;
}

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.poster-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #ffe4e6, #eef2ff);
}

.movie-grid.featured .poster-frame {
    aspect-ratio: 16 / 10;
}

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

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

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.54));
    opacity: 0;
    transition: opacity 0.18s ease;
}

.movie-card-link:hover .poster-frame::after {
    opacity: 1;
}

.poster-region,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.poster-region {
    top: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    padding: 6px 10px;
    background: var(--rose-500);
}

.rank-badge {
    top: 12px;
    left: 12px;
    min-width: 36px;
    height: 36px;
    background: rgba(17, 24, 39, 0.86);
}

.poster-play {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 999px;
    background: rgba(244, 63, 94, 0.92);
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

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

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

.movie-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--gray-500);
    font-size: 13px;
}

.movie-meta span:first-child {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--gray-600);
}

.movie-card h3 {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.18s ease;
}

.movie-card-link:hover h3 {
    color: var(--rose-500);
}

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

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 8px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-size: 12px;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ranking-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.ranking-number {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--pink-600));
    font-size: 20px;
    font-weight: 900;
}

.ranking-item h3 {
    margin: 0 0 4px;
    font-size: 17px;
}

.ranking-item p {
    margin: 0;
    color: var(--gray-600);
    font-size: 13px;
}

.page-hero {
    padding: 72px 0 38px;
    background:
        radial-gradient(circle at 16% 0%, rgba(244, 63, 94, 0.14), transparent 32%),
        linear-gradient(180deg, #fff7f8, var(--gray-50));
}

.page-title {
    max-width: 860px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, 190px));
    gap: 12px;
    align-items: center;
    margin: 28px 0 32px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.filter-panel.simple {
    grid-template-columns: minmax(240px, 1fr) minmax(150px, 220px);
}

.search-input,
.filter-control {
    width: 100%;
    padding: 12px 14px;
}

.empty-state {
    margin: 34px 0;
    padding: 36px;
    text-align: center;
    color: var(--gray-600);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.detail-page {
    padding: 34px 0 72px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--gray-600);
    font-weight: 700;
}

.back-link:hover {
    color: var(--rose-500);
}

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

.detail-main,
.detail-sidebar,
.related-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

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

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.16), rgba(17, 24, 39, 0.72));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-button {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-600));
    box-shadow: 0 20px 44px rgba(244, 63, 94, 0.34);
    font-size: 34px;
}

.detail-content {
    padding: 28px;
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    color: var(--rose-600);
    background: var(--rose-50);
    font-size: 13px;
    font-weight: 800;
}

.badge.blue {
    color: #2563eb;
    background: #eff6ff;
}

.badge.gray {
    color: var(--gray-700);
    background: var(--gray-100);
}

.detail-title h1 {
    font-size: clamp(30px, 5vw, 44px);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0 22px;
    color: var(--gray-600);
}

.content-block {
    margin-top: 26px;
}

.content-block h2 {
    margin: 0 0 12px;
    color: var(--gray-900);
    font-size: 24px;
}

.content-block p {
    margin: 0 0 14px;
    color: var(--gray-700);
}

.review-box {
    padding: 20px;
    border: 1px solid var(--rose-100);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--rose-50), #fdf2f8);
}

.detail-sidebar {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.detail-sidebar h2 {
    margin: 0 0 18px;
    font-size: 22px;
}

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

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

.info-value {
    color: var(--gray-900);
    font-weight: 800;
}

.sidebar-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--gray-200);
}

.sidebar-actions a {
    display: flex;
    justify-content: center;
    border-radius: 14px;
    padding: 12px;
    color: var(--rose-600);
    background: var(--rose-50);
    font-weight: 800;
}

.related-section {
    margin-top: 28px;
    padding: 24px;
}

.related-section h2 {
    margin: 0 0 20px;
}

.categories-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
}

.category-link-card {
    display: block;
    min-height: 120px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.category-link-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.category-link-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-900);
    font-size: 20px;
}

.category-link-card span {
    color: var(--gray-600);
}

.site-footer {
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 30px;
    padding: 50px 0 38px;
}

.footer-logo {
    color: var(--white);
    font-size: 22px;
}

.site-footer p {
    max-width: 380px;
    color: #9ca3af;
}

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

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: #d1d5db;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fb7185;
}

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

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

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

    .hero-content,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-slider {
        min-height: auto;
    }

    .hero-slide {
        position: absolute;
    }

    .hero-slide.is-active {
        position: relative;
    }

    .hero-content {
        padding-top: 64px;
        padding-bottom: 92px;
    }

    .hero-panel {
        max-width: 460px;
    }

    .detail-sidebar {
        position: static;
    }

    .filter-panel,
    .filter-panel.simple {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-inner {
        height: 64px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-stats {
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .section {
        padding: 52px 0;
    }

    .section-header {
        display: block;
    }

    .section-actions {
        margin-top: 16px;
    }

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

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

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

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

    .poster-region {
        font-size: 11px;
        padding: 4px 8px;
    }

    .detail-content,
    .related-section,
    .detail-sidebar {
        padding: 18px;
    }

    .player-button {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}
