:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --rose-600: #e11d48;
    --blue-600: #2563eb;
    --indigo-600: #4f46e5;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 25px 60px rgba(15, 23, 42, 0.16);
    --radius-lg: 18px;
    --radius-xl: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
    color: var(--gray-800);
    background: linear-gradient(180deg, var(--amber-50) 0%, #ffffff 36%, #fff7ed 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.94), rgba(255, 247, 237, 0.94), rgba(255, 251, 235, 0.94));
    box-shadow: 0 10px 30px rgba(120, 53, 15, 0.12);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark,
.footer-brand span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-500));
    box-shadow: 0 10px 22px rgba(217, 119, 6, 0.34);
}

.brand strong {
    display: block;
    font-size: 22px;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--amber-700), var(--orange-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand small {
    display: block;
    margin-top: 2px;
    color: var(--gray-600);
    font-size: 12px;
}

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

.nav-link {
    position: relative;
    padding: 8px 0;
    color: var(--gray-700);
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--amber-600);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--amber-600);
}

.nav-link:hover span,
.nav-link.active span {
    width: 100%;
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 12px;
    padding: 9px 12px;
    background: var(--amber-100);
    color: var(--gray-700);
}

.mobile-nav {
    display: none;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

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

.mobile-link {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--gray-700);
    background: rgba(255, 255, 255, 0.58);
}

.mobile-link:hover {
    color: var(--amber-700);
    background: var(--amber-100);
}

.hero-carousel {
    position: relative;
    min-height: 76vh;
    overflow: hidden;
    color: #ffffff;
    background: var(--gray-900);
}

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

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

.hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img,
.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.08);
    transform: scale(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 36%, rgba(245, 158, 11, 0.28), transparent 32%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.74) 48%, rgba(17, 24, 39, 0.38)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 76vh;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
    align-items: center;
    gap: 52px;
    padding: 80px 0 110px;
}

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

.hero-kicker,
.detail-tags,
.hero-tags,
.tag-row,
.channel-links,
.quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-kicker span,
.hero-kicker em {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 999px;
    padding: 6px 14px;
    font-style: normal;
    font-weight: 800;
}

.hero-kicker span {
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.28);
}

.hero-kicker em {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -1px;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.hero-summary {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    line-height: 1.9;
}

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

.hero-tags span,
.detail-tags a,
.tag-row span {
    border-radius: 999px;
    padding: 6px 11px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

.hero-actions,
.detail-copy .primary-button {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.primary-button,
.quick-search button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
}

.primary-button:hover,
.ghost-button:hover,
.quick-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(245, 158, 11, 0.34);
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-width: 350px;
    justify-self: end;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    transform: perspective(900px) rotateY(-5deg);
}

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

.hero-poster span,
.play-dot {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(245, 158, 11, 0.94);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.hero-poster span {
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    font-size: 26px;
}

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

.hero-arrow,
.hero-dot {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

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

.hero-dots {
    display: flex;
    gap: 9px;
}

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

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

.quick-search-panel {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-top: -42px;
    position: relative;
    z-index: 5;
    border-radius: var(--radius-xl);
    padding: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(18px);
}

.quick-search label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 700;
}

.quick-search div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.quick-search input,
.filter-input,
.filter-select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 0 18px;
    outline: none;
    background: #ffffff;
    color: var(--gray-800);
}

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

.quick-links a,
.channel-links a {
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--amber-700);
    background: var(--amber-100);
    font-weight: 800;
}

.page-section {
    padding: 60px 0;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-heading > span {
    width: 5px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--amber-500), var(--orange-500));
}

.section-heading.indigo > span {
    background: linear-gradient(180deg, var(--indigo-600), var(--blue-600));
}

.section-heading.rose > span {
    background: linear-gradient(180deg, var(--rose-600), var(--orange-500));
}

.section-heading.blue > span {
    background: linear-gradient(180deg, var(--blue-600), var(--indigo-600));
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    color: var(--gray-800);
}

.section-heading p {
    margin: 4px 0 0;
    color: var(--gray-500);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-md);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-200), var(--amber-100));
}

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

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

.play-dot {
    right: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-dot {
    opacity: 1;
    transform: scale(1);
}

.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    min-width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    padding: 0 8px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-500), var(--rose-600));
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.card-body {
    padding: 14px;
}

.card-title {
    display: block;
    color: var(--gray-800);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

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

.card-meta {
    margin: 7px 0;
    color: var(--gray-500);
    font-size: 13px;
}

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

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

.tag-row span {
    color: var(--amber-700);
    background: var(--amber-100);
}

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

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

.category-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 150px;
    border-radius: var(--radius-xl);
    padding: 18px;
    background: linear-gradient(135deg, #ffffff, var(--amber-50));
    box-shadow: var(--shadow-md);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.category-cover-stack {
    position: relative;
    height: 112px;
}

.category-cover-stack img {
    position: absolute;
    width: 76px;
    height: 104px;
    object-fit: cover;
    border: 4px solid #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.category-cover-stack img:nth-child(1) {
    left: 0;
    top: 6px;
    z-index: 3;
}

.category-cover-stack img:nth-child(2) {
    left: 22px;
    top: 0;
    z-index: 2;
}

.category-cover-stack img:nth-child(3) {
    left: 44px;
    top: 12px;
    z-index: 1;
}

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

.category-card p {
    margin: 0 0 12px;
    color: var(--gray-600);
    line-height: 1.6;
}

.category-card span {
    color: var(--amber-700);
    font-weight: 900;
}

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

.movie-list-grid {
    display: grid;
    gap: 18px;
}

.compact-card {
    display: grid;
    grid-template-columns: 138px 1fr;
    min-height: 132px;
}

.compact-card .poster-wrap {
    aspect-ratio: auto;
    height: 100%;
}

.ranking-panel,
.content-card,
.aside-card,
.player-card {
    border-radius: var(--radius-xl);
    padding: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.ranking-panel {
    position: sticky;
    top: 94px;
}

.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.panel-title h2 {
    margin: 0;
    font-size: 24px;
}

.panel-title a {
    color: var(--amber-700);
    font-weight: 800;
}

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

.subpage {
    min-height: 60vh;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 78px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.42), transparent 30%),
        linear-gradient(135deg, var(--gray-900), #2b1708 58%, #4b1d07);
}

.page-hero.small-hero {
    background:
        radial-gradient(circle at 18% 22%, rgba(245, 158, 11, 0.42), transparent 30%),
        linear-gradient(135deg, #1f2937, #3b250d 58%, #7c2d12);
}

.page-hero span {
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.page-hero h1 {
    max-width: 880px;
    margin: 18px 0 16px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.12;
}

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

.channel-links {
    margin-top: 22px;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px;
    gap: 14px;
    margin-bottom: 26px;
    border-radius: var(--radius-xl);
    padding: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

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

.detail-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.76) 54%, rgba(17, 24, 39, 0.44)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.64));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
    padding: 76px 0;
}

.detail-poster {
    overflow: hidden;
    border-radius: var(--radius-xl);
    aspect-ratio: 3 / 4;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

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

.detail-copy h1 {
    margin: 18px 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
}

.detail-meta {
    margin: 0 0 18px;
    color: var(--amber-100);
    font-weight: 800;
}

.detail-one-line {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.8;
}

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

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

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

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.48));
    cursor: pointer;
}

.play-overlay.hidden {
    display: none;
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
    font-size: 28px;
}

.player-card h2,
.content-card h2,
.aside-card h2 {
    margin: 18px 0 12px;
    font-size: 24px;
}

.player-card p,
.content-card p,
.aside-card p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.9;
}

.content-card h2,
.aside-card h2 {
    margin-top: 0;
}

.detail-aside {
    position: sticky;
    top: 94px;
    display: grid;
    gap: 22px;
}

.aside-card dl {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    margin: 0;
}

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

.aside-card dd {
    margin: 0;
    color: var(--gray-800);
}

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

.mini-link {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 12px;
    align-items: center;
}

.mini-link img {
    width: 96px;
    height: 62px;
    object-fit: cover;
    border-radius: 12px;
}

.mini-link span {
    font-weight: 800;
    line-height: 1.45;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(135deg, var(--gray-900), #1f2937 56%, #111827);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 34px;
    padding: 52px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 20px;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 18px;
}

.site-footer p {
    margin: 0 0 10px;
    line-height: 1.8;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.site-footer a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9ca3af;
}

@media (max-width: 1180px) {
    .movie-grid.six-col {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 960px) {
    .desktop-nav {
        display: none;
    }

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

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

    .hero-poster {
        justify-self: start;
        width: min(300px, 78vw);
    }

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

    .movie-grid,
    .movie-grid.six-col,
    .category-grid,
    .category-grid.large {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ranking-panel,
    .detail-aside {
        position: static;
    }
}

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

    .brand strong {
        font-size: 18px;
    }

    .brand small {
        font-size: 11px;
    }

    .hero-carousel,
    .hero-content {
        min-height: 84vh;
    }

    .hero-content {
        padding: 52px 0 110px;
    }

    .hero-summary,
    .detail-one-line,
    .page-hero p {
        font-size: 16px;
    }

    .hero-actions,
    .quick-search div,
    .filter-bar {
        grid-template-columns: 1fr;
        display: grid;
    }

    .movie-grid,
    .movie-grid.six-col,
    .category-grid,
    .category-grid.large {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .card-body {
        padding: 12px;
    }

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

    .compact-card {
        grid-template-columns: 104px 1fr;
        min-height: 116px;
    }

    .category-card {
        grid-column: span 2;
        grid-template-columns: 96px 1fr;
    }

    .detail-poster {
        width: min(240px, 72vw);
    }

    .footer-bottom {
        flex-direction: column;
    }
}
