:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #f59e0b;
    --amber-500: #d97706;
    --amber-700: #a16207;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --orange-900: #7c2d12;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-500: #78716c;
    --stone-700: #44403c;
    --stone-900: #1c1917;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(120, 53, 15, 0.16);
    --shadow-card: 0 15px 36px rgba(120, 53, 15, 0.12);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--stone-900);
    background: linear-gradient(180deg, var(--amber-50) 0%, #fff7ed 45%, var(--white) 100%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: var(--amber-50);
    background: linear-gradient(100deg, var(--amber-800), var(--orange-700) 52%, var(--amber-900));
    box-shadow: 0 10px 30px rgba(120, 53, 15, 0.28);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--amber-900);
    background: linear-gradient(145deg, var(--amber-50), var(--amber-200));
    border-radius: 14px;
    box-shadow: inset 0 -2px 0 rgba(120, 53, 15, 0.15), 0 10px 25px rgba(0, 0, 0, 0.14);
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-title {
    font-size: 1.56rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand-subtitle {
    font-size: 0.78rem;
    color: var(--amber-200);
}

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

.main-nav > a,
.nav-dropdown > button {
    color: var(--amber-50);
    font-weight: 700;
    white-space: nowrap;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.main-nav > a:hover,
.nav-dropdown > button:hover {
    color: var(--amber-200);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 16px);
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 8px;
    min-width: 310px;
    padding: 14px;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    color: var(--amber-900);
    background: rgba(255, 251, 235, 0.98);
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transform: translateY(8px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.nav-dropdown-panel a {
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--amber-100);
    font-weight: 700;
}

.nav-dropdown-panel a:hover {
    color: var(--amber-50);
    background: linear-gradient(135deg, var(--amber-700), var(--orange-600));
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search input {
    width: 245px;
    padding: 10px 42px 10px 16px;
    color: var(--amber-50);
    background: rgba(120, 53, 15, 0.45);
    border: 1px solid rgba(253, 230, 138, 0.42);
    border-radius: 999px;
    outline: none;
}

.header-search input::placeholder {
    color: rgba(253, 230, 138, 0.78);
}

.header-search input:focus {
    border-color: var(--amber-200);
    box-shadow: 0 0 0 3px rgba(253, 230, 138, 0.16);
}

.header-search button {
    position: absolute;
    right: 4px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--amber-900);
    background: var(--amber-200);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.nav-toggle {
    display: none;
    color: var(--amber-50);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 12px;
    cursor: pointer;
}

.hero-carousel {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: var(--amber-50);
    background: var(--amber-900);
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    padding: 70px 0 96px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    transition: transform 4.8s ease;
}

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

.hero-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 18% 28%, rgba(245, 158, 11, 0.42), transparent 36%),
        linear-gradient(90deg, rgba(28, 25, 23, 0.94), rgba(120, 53, 15, 0.68) 48%, rgba(120, 53, 15, 0.16)),
        linear-gradient(180deg, rgba(120, 53, 15, 0.16), rgba(255, 251, 235, 0.98));
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
    gap: 48px;
    align-items: center;
}

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

.hero-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 26px;
    color: rgba(255, 251, 235, 0.9);
    font-size: clamp(1rem, 2vw, 1.28rem);
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber-900);
    background: linear-gradient(135deg, var(--amber-100), var(--amber-300));
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span,
.tag-row a {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    color: var(--amber-900);
    background: var(--amber-100);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

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

.btn-primary,
.btn-secondary,
.section-link,
.filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary,
.filter-reset {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-700));
    box-shadow: 0 14px 28px rgba(194, 65, 12, 0.26);
    border: 0;
}

.btn-secondary {
    color: var(--amber-900);
    background: rgba(255, 251, 235, 0.92);
    box-shadow: 0 14px 28px rgba(120, 53, 15, 0.18);
}

.btn-primary:hover,
.btn-secondary:hover,
.section-link:hover,
.filter-reset:hover {
    transform: translateY(-2px);
}

.hero-panel {
    align-self: stretch;
    padding: 18px;
    background: rgba(255, 251, 235, 0.13);
    border: 1px solid rgba(253, 230, 138, 0.22);
    border-radius: 28px;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
}

.hero-poster-stack {
    display: grid;
    gap: 14px;
}

.hero-poster-main {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.hero-poster-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-poster-main span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 14px;
    color: var(--amber-900);
    background: var(--amber-100);
    border-radius: 999px;
    font-weight: 900;
}

.hero-thumb-list {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
}

.hero-thumb {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 8px;
    color: var(--amber-50);
    text-align: left;
    background: rgba(28, 25, 23, 0.55);
    border: 1px solid rgba(253, 230, 138, 0.16);
    border-radius: 16px;
    cursor: pointer;
    backdrop-filter: blur(14px);
}

.hero-thumb.is-active,
.hero-thumb:hover {
    background: rgba(251, 191, 36, 0.28);
    border-color: var(--amber-200);
}

.hero-thumb img {
    width: 58px;
    height: 42px;
    object-fit: cover;
    border-radius: 10px;
}

.hero-thumb strong,
.hero-thumb small {
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-thumb small {
    color: var(--amber-200);
}

.main-section {
    padding: 58px 0;
}

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

.section-heading h1,
.section-heading h2 {
    margin: 10px 0 6px;
    color: var(--amber-900);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 720px;
    margin: 0;
    color: var(--stone-500);
}

.section-link {
    color: var(--amber-900);
    background: var(--amber-100);
}

.category-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.category-chip {
    position: relative;
    overflow: hidden;
    padding: 22px;
    min-height: 130px;
    color: var(--amber-50);
    background: linear-gradient(135deg, var(--amber-800), var(--orange-700));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.category-chip::after {
    position: absolute;
    right: -28px;
    bottom: -48px;
    width: 120px;
    height: 120px;
    content: "";
    background: rgba(255, 251, 235, 0.18);
    border-radius: 999px;
}

.category-chip strong {
    position: relative;
    display: block;
    font-size: 1.2rem;
}

.category-chip span {
    position: relative;
    display: block;
    margin-top: 8px;
    color: var(--amber-200);
    font-size: 0.9rem;
}

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

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

.movie-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(120, 53, 15, 0.18);
}

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4.1;
    background: linear-gradient(135deg, var(--amber-800), var(--orange-700));
}

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

.movie-card:hover .movie-poster img {
    transform: scale(1.06);
}

.poster-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(28, 25, 23, 0.78));
}

.poster-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 12px;
    color: var(--amber-900);
    background: var(--amber-100);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 900;
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--amber-900);
    background: var(--amber-200);
    border-radius: 14px;
    font-weight: 950;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

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

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--amber-700);
    font-size: 0.78rem;
    font-weight: 900;
}

.movie-card h3 {
    margin: 10px 0 8px;
    color: var(--amber-900);
    font-size: 1.13rem;
    line-height: 1.28;
}

.movie-card p {
    min-height: 3.2em;
    margin: 0 0 12px;
    color: var(--stone-500);
    font-size: 0.92rem;
}

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

.movie-card-compact p {
    display: none;
}

.page-hero {
    padding: 64px 0 46px;
    color: var(--amber-50);
    background:
        radial-gradient(circle at 12% 0%, rgba(253, 230, 138, 0.28), transparent 33%),
        linear-gradient(110deg, var(--amber-900), var(--orange-900));
}

.page-hero h1 {
    margin: 12px 0;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--amber-200);
    font-size: 1.05rem;
}

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

.category-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.category-card-media {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 10px;
    background: var(--amber-100);
}

.category-card-media img {
    aspect-ratio: 3 / 4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

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

.category-card-body h2 {
    margin: 0 0 10px;
    color: var(--amber-900);
    font-size: 1.45rem;
}

.category-card-body p {
    margin: 0 0 18px;
    color: var(--stone-500);
}

.filter-bar {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
    background: var(--white);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.filter-search,
.filter-selects,
.filter-selects label {
    display: grid;
    gap: 7px;
}

.filter-selects {
    grid-template-columns: repeat(4, 1fr);
}

.filter-bar span {
    color: var(--amber-900);
    font-size: 0.78rem;
    font-weight: 900;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    padding: 12px 14px;
    color: var(--stone-900);
    background: var(--amber-50);
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 14px;
    outline: none;
}

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

.filter-reset {
    justify-self: start;
    cursor: pointer;
}

.empty-state {
    display: none;
    margin: 22px 0;
    padding: 28px;
    color: var(--amber-900);
    text-align: center;
    background: var(--amber-100);
    border-radius: var(--radius-lg);
    font-weight: 900;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--amber-700);
    font-size: 0.9rem;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(280px, 0.9fr);
    gap: 30px;
}

.detail-main,
.detail-side {
    display: grid;
    gap: 24px;
}

.player-card,
.detail-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.video-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--amber-900);
    background: linear-gradient(180deg, rgba(28, 25, 23, 0.18), rgba(28, 25, 23, 0.58));
    border: 0;
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-button {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    padding-left: 6px;
    color: var(--amber-900);
    background: linear-gradient(145deg, var(--amber-50), var(--amber-300));
    border-radius: 999px;
    font-size: 2.3rem;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
}

.detail-card {
    padding: 28px;
}

.detail-title h1 {
    margin: 0 0 10px;
    color: var(--amber-900);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-title p {
    margin: 0;
    color: var(--stone-500);
    font-size: 1.05rem;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 22px 0;
}

.detail-meta-grid div {
    padding: 14px;
    background: var(--amber-50);
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 16px;
}

.detail-meta-grid span {
    display: block;
    color: var(--stone-500);
    font-size: 0.78rem;
    font-weight: 800;
}

.detail-meta-grid strong {
    display: block;
    margin-top: 4px;
    color: var(--amber-900);
}

.detail-card h2 {
    margin: 0 0 12px;
    color: var(--amber-900);
    font-size: 1.5rem;
}

.detail-card p {
    margin: 0;
    color: var(--stone-700);
}

.detail-poster-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

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

.detail-poster-card .detail-card {
    border-radius: 0;
    box-shadow: none;
}

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

.related-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: var(--amber-50);
    border-radius: 16px;
}

.related-item img {
    width: 76px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
}

.related-item strong {
    display: block;
    overflow: hidden;
    color: var(--amber-900);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-item span {
    color: var(--stone-500);
    font-size: 0.85rem;
}

.site-footer {
    margin-top: 72px;
    color: var(--amber-100);
    background: linear-gradient(135deg, var(--amber-900), var(--orange-900));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
    padding: 46px 0;
}

.footer-brand {
    margin-bottom: 12px;
    font-size: 1.6rem;
    font-weight: 950;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--amber-50);
    font-size: 1.1rem;
}

.site-footer p {
    margin: 0;
    color: var(--amber-200);
}

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

.footer-links a {
    color: var(--amber-200);
}

.footer-links a:hover {
    color: var(--amber-50);
}

.footer-bottom {
    padding: 18px 0;
    color: var(--amber-300);
    text-align: center;
    border-top: 1px solid rgba(253, 230, 138, 0.18);
}

@media (max-width: 1100px) {
    .main-nav {
        gap: 14px;
    }

    .header-search input {
        width: 190px;
    }

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

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

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        display: none;
    }

    .hero-thumb-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px 0 4px;
    }

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

    .nav-dropdown-panel {
        position: static;
        visibility: visible;
        pointer-events: auto;
        opacity: 1;
        transform: none;
        min-width: 0;
        margin-top: 8px;
    }

    .header-search input {
        width: 100%;
    }

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

    .hero-slide {
        padding: 44px 0 170px;
    }

    .hero-thumb-list {
        grid-template-columns: 1fr 1fr;
    }

    .movie-grid,
    .movie-grid.compact-grid,
    .category-strip,
    .category-overview-grid,
    .filter-selects,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .detail-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .brand-title {
        font-size: 1.25rem;
    }

    .brand-subtitle {
        font-size: 0.72rem;
    }

    .hero-thumb-list {
        grid-template-columns: 1fr;
    }

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

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

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

    .detail-card {
        padding: 20px;
    }
}
