:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-200: #fecdd3;
    --rose-400: #fb7185;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-500: #ec4899;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(244, 63, 94, 0.16);
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--slate-900);
    background: linear-gradient(180deg, var(--rose-50), var(--white) 36%, var(--pink-50));
    font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
    line-height: 1.6;
}

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.86);
    border-bottom: 1px solid rgba(251, 113, 133, 0.18);
    backdrop-filter: blur(18px);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--slate-900);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(244, 63, 94, 0.32);
    font-size: 15px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--slate-700);
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--rose-600);
    background: var(--rose-50);
    transform: translateY(-1px);
}

.nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: var(--rose-50);
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--rose-600);
    border-radius: 10px;
}

.home-hero,
.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
}

.home-hero {
    padding: 72px 0 64px;
    background: radial-gradient(circle at 18% 20%, rgba(251, 113, 133, 0.20), transparent 26%), linear-gradient(120deg, #fff1f2, #fdf2f8 52%, #ffffff);
}

.hero-bg-glow {
    position: absolute;
    inset: -30% 0 auto auto;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.24), transparent 64%);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 36px;
    align-items: center;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 14px 0 18px;
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
    margin: 0;
    color: var(--slate-700);
    font-size: 18px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rose-600);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
    border-radius: 50%;
}

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

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

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.secondary-btn {
    color: var(--rose-600);
    background: var(--white);
    border: 1px solid var(--rose-200);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow);
}

.hero-search {
    margin-top: 26px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(254, 205, 211, 0.9);
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
}

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

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 14px;
    color: var(--slate-900);
}

.hero-search button {
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    color: var(--white);
    background: var(--rose-500);
    font-weight: 800;
    cursor: pointer;
}

.hero-carousel {
    position: relative;
    min-height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--rose-100);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    padding: 34px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-slide-content {
    width: min(520px, 100%);
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.hero-kicker,
.pill,
.movie-year,
.movie-type {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-kicker,
.pill {
    padding: 5px 10px;
    color: var(--rose-600);
    background: var(--rose-50);
}

.hero-slide h2 {
    margin: 12px 0 8px;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.1;
}

.hero-slide p {
    margin: 0 0 16px;
    color: var(--slate-700);
}

.hero-tags span,
.detail-tags span,
.card-tags span {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 8px;
    color: var(--slate-700);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(254, 205, 211, 0.7);
    font-size: 12px;
    font-weight: 700;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--rose-500);
}

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

.narrow-padding {
    padding: 56px 0;
}

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

.section-heading.centered {
    display: block;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 34px;
}

.section-heading h2 {
    margin: 6px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p {
    color: var(--slate-500);
}

.section-heading a,
.text-link {
    color: var(--rose-600);
    font-weight: 900;
}

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

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

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

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

.movie-card-link,
.rank-link {
    display: block;
    height: 100%;
    color: inherit;
}

.poster-card,
.movie-card-horizontal,
.rank-card,
.ranking-row,
.category-overview-card {
    background: var(--white);
    border: 1px solid rgba(254, 205, 211, 0.54);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.poster-card:hover,
.movie-card-horizontal:hover,
.rank-card:hover,
.ranking-row:hover,
.category-overview-card:hover {
    transform: translateY(-6px);
    border-color: var(--rose-200);
    box-shadow: var(--shadow);
}

.movie-thumb {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-100), var(--pink-100));
}

.poster-thumb {
    aspect-ratio: 3 / 4;
}

.horizontal-thumb {
    width: 188px;
    min-height: 132px;
    aspect-ratio: 16 / 10;
    flex: 0 0 188px;
}

.movie-thumb img,
.rank-thumb img,
.category-cover-stack img,
.detail-cover img,
.ranking-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .movie-thumb img,
.category-overview-card:hover img,
.ranking-row:hover img {
    transform: scale(1.08);
}

.movie-year,
.movie-type {
    position: absolute;
    z-index: 2;
    padding: 4px 9px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.74);
    backdrop-filter: blur(8px);
}

.movie-year {
    top: 10px;
    right: 10px;
}

.movie-type {
    left: 10px;
    top: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--rose-600);
}

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--rose-500);
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%) scale(0.88);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-info {
    padding: 16px;
}

.movie-info h3,
.rank-info h3,
.ranking-row h2 {
    margin: 0 0 8px;
    color: var(--slate-900);
    font-size: 17px;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.movie-info p,
.rank-info p,
.ranking-row p {
    margin: 0 0 12px;
    color: var(--slate-500);
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-tags,
.movie-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.movie-meta-row {
    margin-bottom: 8px;
    color: var(--slate-500);
    font-size: 13px;
}

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

.movie-card-horizontal .movie-card-link {
    display: flex;
    align-items: stretch;
}

.category-band {
    background: linear-gradient(90deg, rgba(253, 242, 248, 0.84), rgba(255, 241, 242, 0.9));
}

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

.category-card {
    min-height: 174px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    border: 1px solid rgba(254, 205, 211, 0.72);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--rose-500);
    background: var(--rose-50);
}

.category-card strong {
    font-size: 20px;
}

.category-card small {
    color: var(--slate-500);
    font-size: 14px;
}

.page-hero {
    padding: 64px 0;
    background: radial-gradient(circle at 70% 0%, rgba(236, 72, 153, 0.18), transparent 34%), linear-gradient(135deg, var(--rose-50), var(--pink-50));
}

.page-hero-inner,
.detail-hero-inner {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.compact-hero h1,
.category-hero h1 {
    max-width: 820px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--slate-500);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--rose-600);
    font-weight: 800;
}

.filter-panel {
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid rgba(254, 205, 211, 0.72);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
}

.filter-form {
    display: flex;
    gap: 14px;
    align-items: center;
}

.search-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid var(--rose-200);
    border-radius: 999px;
    background: var(--white);
}

.search-box span {
    color: var(--rose-600);
    font-weight: 900;
}

.search-box input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-select {
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid var(--rose-200);
    border-radius: 999px;
    color: var(--slate-700);
    background: var(--white);
    outline: 0;
}

.filter-status {
    margin: 12px 4px 0;
    color: var(--slate-500);
    font-size: 14px;
}

.empty-state {
    display: none;
    margin-top: 24px;
    padding: 34px;
    text-align: center;
    border-radius: var(--radius-md);
    color: var(--slate-500);
    background: var(--white);
}

.empty-state.is-visible {
    display: block;
}

.category-overview-card a {
    display: grid;
    grid-template-columns: 1fr;
    height: 100%;
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    height: 180px;
    padding: 8px;
    background: linear-gradient(135deg, var(--rose-50), var(--pink-50));
}

.category-cover-stack img {
    min-width: 0;
    border-radius: 12px;
}

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

.category-overview-info h2 {
    margin: 8px 0;
}

.category-overview-info p {
    color: var(--slate-500);
}

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

.ranking-row a {
    display: grid;
    grid-template-columns: 64px 96px 1fr;
    gap: 18px;
    align-items: center;
    padding: 14px;
}

.rank-number {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
    font-size: 18px;
    font-weight: 900;
}

.ranking-row img {
    width: 96px;
    height: 120px;
    border-radius: 14px;
    background: var(--rose-100);
}

.detail-hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 64px 0;
    background: var(--rose-50);
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.02);
}

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

.detail-cover {
    margin: 0;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--rose-100);
}

.detail-copy {
    max-width: 780px;
}

.detail-copy h1 {
    font-size: clamp(34px, 5vw, 62px);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--slate-700);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(254, 205, 211, 0.8);
    font-weight: 800;
}

.detail-copy .primary-btn {
    margin-top: 28px;
}

.detail-main {
    padding-top: 42px;
}

.player-section {
    margin-bottom: 42px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #111827;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #111827;
    object-fit: contain;
}

.player-start {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.72));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-start-icon {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--rose-500);
    background: var(--white);
    font-size: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

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

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

.detail-article {
    display: grid;
    gap: 18px;
    padding: 34px;
    border: 1px solid rgba(254, 205, 211, 0.72);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.detail-article h2 {
    margin: 0;
    font-size: 26px;
}

.detail-article p {
    margin: 0;
    color: var(--slate-700);
    font-size: 17px;
}

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

.info-list div {
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--rose-50);
}

.info-list dt {
    color: var(--rose-600);
    font-size: 13px;
    font-weight: 900;
}

.info-list dd {
    margin: 4px 0 0;
    color: var(--slate-700);
}

.related-section {
    margin-top: 48px;
}

.site-footer {
    margin-top: 40px;
    background: var(--white);
    border-top: 1px solid rgba(254, 205, 211, 0.7);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 28px;
}

.footer-inner p {
    max-width: 520px;
    color: var(--slate-500);
}

.footer-links,
.footer-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-content: start;
}

.footer-links a,
.footer-cats a {
    color: var(--slate-500);
    font-weight: 700;
}

.footer-links a:hover,
.footer-cats a:hover {
    color: var(--rose-600);
}

.footer-bottom {
    padding: 18px 16px 24px;
    text-align: center;
    color: var(--slate-500);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .hero-shell,
    .detail-layout {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .nav-links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid rgba(254, 205, 211, 0.9);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-soft);
    }

    .site-header.nav-open .nav-links {
        display: flex;
    }

    .hero-shell {
        width: min(100% - 24px, 720px);
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(36px, 12vw, 58px);
    }

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

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

    .horizontal-grid,
    .category-grid,
    .category-overview-grid,
    .footer-inner,
    .info-list {
        grid-template-columns: 1fr;
    }

    .movie-card-horizontal .movie-card-link {
        flex-direction: column;
    }

    .horizontal-thumb {
        width: 100%;
        min-height: auto;
        flex-basis: auto;
    }

    .ranking-row a {
        grid-template-columns: 42px 72px 1fr;
        gap: 12px;
    }

    .ranking-row img {
        width: 72px;
        height: 96px;
    }

    .rank-number {
        width: 38px;
        height: 38px;
    }

    .detail-cover {
        width: min(280px, 100%);
    }
}

@media (max-width: 560px) {
    .header-inner,
    .section-wrap,
    .page-hero-inner,
    .detail-hero-inner,
    .footer-inner {
        width: calc(100% - 24px);
    }

    .site-logo {
        font-size: 18px;
    }

    .home-hero,
    .page-hero,
    .detail-hero {
        padding: 42px 0;
    }

    .hero-carousel {
        min-height: 420px;
        border-radius: 22px;
    }

    .hero-slide {
        padding: 16px;
    }

    .hero-slide-content,
    .detail-article {
        padding: 20px;
    }

    .poster-grid,
    .poster-grid.small-grid,
    .listing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .movie-info {
        padding: 12px;
    }

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

    .movie-info p,
    .card-tags {
        display: none;
    }

    .player-shell {
        border-radius: 18px;
    }

    .player-start-icon {
        width: 64px;
        height: 64px;
    }

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