:root {
    --amber: #d97706;
    --amber-light: #f59e0b;
    --orange: #f97316;
    --ink: #111827;
    --muted: #6b7280;
    --soft: #f9fafb;
    --line: #e5e7eb;
    --card: #ffffff;
    --shadow: 0 20px 45px rgba(17, 24, 39, 0.12);
    --shadow-soft: 0 12px 30px rgba(17, 24, 39, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header:hover {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

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

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

.brand {
    color: #ffffff;
}

.site-header.is-scrolled .brand,
.site-header:hover .brand {
    color: var(--ink);
}

.brand-mark {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #ffffff;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 10px 24px rgba(217, 119, 6, 0.28);
}

.brand-text {
    white-space: nowrap;
    font-size: 20px;
}

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

.desktop-nav a,
.mobile-panel a {
    color: #ffffff;
    font-weight: 700;
    transition: color 0.2s ease;
}

.site-header.is-scrolled .desktop-nav a,
.site-header:hover .desktop-nav a {
    color: #374151;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-panel a:hover,
.mobile-panel a.is-active {
    color: var(--amber-light);
}

.site-search,
.mobile-search,
.wide-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.site-header.is-scrolled .site-search,
.site-header:hover .site-search {
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.site-search input,
.mobile-search input,
.wide-search input {
    width: 210px;
    min-width: 0;
    color: #ffffff;
    border: 0;
    outline: 0;
    padding: 10px 14px;
    background: transparent;
}

.site-header.is-scrolled .site-search input,
.site-header:hover .site-search input {
    color: var(--ink);
}

.site-search input::placeholder,
.mobile-search input::placeholder,
.wide-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .site-search input::placeholder,
.site-header:hover .site-search input::placeholder {
    color: #9ca3af;
}

.site-search button,
.mobile-search button,
.wide-search button {
    border: 0;
    color: #ffffff;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.22);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
}

.site-header.is-scrolled .menu-toggle span,
.site-header:hover .menu-toggle span {
    background: var(--ink);
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(17, 24, 39, 0.92);
    box-shadow: var(--shadow);
}

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

.mobile-panel nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

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

.hero-shell {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(1.015);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.36;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.96) 0%, rgba(17, 24, 39, 0.74) 42%, rgba(17, 24, 39, 0.42) 100%),
        radial-gradient(circle at 22% 24%, rgba(245, 158, 11, 0.45), transparent 35%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 360px;
    align-items: center;
    gap: 52px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding-top: 72px;
}

.hero-copy {
    color: #ffffff;
}

.eyebrow,
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--amber-light);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.hero-tags,
.tag-row,
.detail-meta,
.filter-chips,
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.tag-row span,
.detail-meta span,
.filter-chips button {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

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

.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 11px 20px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 14px 30px rgba(217, 119, 6, 0.28);
}

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

.text-link {
    min-height: auto;
    color: var(--amber);
    padding: 0;
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    transform: rotate(1deg);
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.48));
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    font-size: 36px;
    line-height: 1;
    transform: translateY(-50%);
}

.hero-arrow.prev {
    left: 28px;
}

.hero-arrow.next {
    right: 28px;
}

.hero-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 28px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: var(--amber-light);
}

.home-search-panel,
.page-section,
.subpage,
.detail-page,
.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.home-search-panel {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 430px);
    align-items: center;
    gap: 28px;
    margin-top: -56px;
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 5;
}

.home-search-panel h2,
.section-title h2,
.page-hero h1,
.detail-info h1,
.story-card h2,
.category-overview-card h2 {
    margin: 0;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.home-search-panel p,
.page-hero p,
.category-overview-card p,
.story-card p,
.detail-info .lead {
    color: var(--muted);
}

.wide-search {
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.wide-search input {
    width: 100%;
    color: var(--ink);
}

.wide-search input::placeholder {
    color: #9ca3af;
}

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

.warm-section {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
    background: linear-gradient(180deg, #fff7ed, #ffffff);
}

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

.section-title h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.category-grid,
.category-overview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.category-card,
.category-overview-card,
.story-card {
    display: block;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--card);
    box-shadow: var(--shadow-soft);
}

.category-card {
    min-height: 230px;
    padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card:hover,
.movie-card:hover,
.category-overview-card:hover {
    border-color: #fcd34d;
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.category-icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #ffffff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    font-weight: 900;
}

.category-card h3 {
    margin: 16px 0 8px;
    font-size: 21px;
}

.category-card p,
.category-preview span {
    color: var(--muted);
    font-size: 14px;
}

.category-preview {
    display: grid;
    gap: 4px;
    margin-top: 16px;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--card);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card.is-hidden {
    display: none;
}

.movie-card.compact {
    display: grid;
    grid-template-columns: 120px 1fr;
    min-height: 178px;
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.movie-card.compact .poster-link img {
    height: 100%;
    aspect-ratio: auto;
}

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

.poster-play,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
}

.poster-play {
    left: 50%;
    top: 50%;
    min-width: 64px;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    opacity: 0;
    background: rgba(217, 119, 6, 0.94);
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.rank-badge {
    left: 10px;
    top: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.28);
}

.card-body {
    padding: 14px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--amber);
    font-size: 12px;
    font-weight: 800;
}

.card-body h3 {
    margin: 8px 0 6px;
    font-size: 16px;
    line-height: 1.35;
}

.card-body h3 a:hover {
    color: var(--amber);
}

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

.tag-row {
    gap: 6px;
}

.tag-row span {
    min-height: 24px;
    padding: 4px 8px;
    font-size: 12px;
}

.section-more {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.amber-band {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 34px;
    align-items: start;
    width: min(1180px, calc(100% - 32px));
    margin-bottom: 72px;
    padding: 40px;
    border-radius: 32px;
    background: linear-gradient(135deg, #111827, #7c2d12 58%, #d97706);
    color: #ffffff;
}

.amber-band h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
}

.amber-band p {
    color: rgba(255, 255, 255, 0.78);
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mini-grid.small {
    grid-template-columns: repeat(6, 1fr);
}

.mini-card {
    display: grid;
    gap: 8px;
    overflow: hidden;
    padding: 10px;
    border-radius: 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
}

.mini-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 12px;
    object-fit: cover;
}

.mini-card span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
}

.mini-card small {
    color: var(--muted);
}

.subpage,
.detail-page {
    padding-top: 96px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 34px;
    padding: 56px;
    border-radius: 34px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.42), transparent 32%),
        linear-gradient(135deg, #111827, #78350f 62%, #d97706);
}

.page-hero.slim {
    padding: 48px;
}

.page-hero h1 {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

.compact-actions {
    margin-top: 22px;
}

.category-overview-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 72px;
}

.category-overview-card {
    padding: 24px;
}

.category-overview-head {
    display: flex;
    gap: 16px;
    align-items: start;
    margin-bottom: 18px;
}

.filter-panel {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.filter-search input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: 0;
    padding: 13px 18px;
    background: #f9fafb;
}

.filter-search input:focus {
    border-color: #f59e0b;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.filter-chips button {
    border: 0;
}

.filter-chips button.is-active,
.filter-chips button:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    border-color: transparent;
}

.listing-grid {
    padding-bottom: 72px;
}

.ranking-block {
    margin-bottom: 64px;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--muted);
    font-weight: 700;
}

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

.detail-hero {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 34px;
    padding: 28px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.32), transparent 32%),
        linear-gradient(135deg, #111827, #431407);
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

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

.detail-info {
    color: #ffffff;
}

.detail-info h1 {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 60px);
}

.detail-info .lead {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.detail-meta {
    margin: 22px 0;
}

.detail-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

.detail-tags span {
    color: #ffffff;
    background: rgba(217, 119, 6, 0.32);
    border-color: rgba(245, 158, 11, 0.45);
}

.detail-info .primary-btn {
    margin-top: 26px;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: var(--shadow);
}

.player-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 10px;
    color: #ffffff;
    border: 0;
    background: radial-gradient(circle at center, rgba(217, 119, 6, 0.28), rgba(2, 6, 23, 0.32));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
    display: inline-grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 20px 45px rgba(217, 119, 6, 0.4);
    font-size: 28px;
}

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

.story-card {
    padding: 26px;
}

.story-card h2 {
    margin-bottom: 12px;
    font-size: 26px;
}

.story-card p {
    margin: 0;
    font-size: 16px;
}

.related-section {
    padding-top: 52px;
}

.site-footer {
    margin-top: 42px;
    padding: 46px 0 28px;
    color: #d1d5db;
    border-radius: 34px 34px 0 0;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 1fr;
    gap: 36px;
    width: min(1080px, calc(100% - 32px));
    margin: 0 auto;
}

.footer-brand {
    color: #ffffff;
    font-size: 20px;
}

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

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

.site-footer a {
    display: block;
    margin: 8px 0;
    color: #d1d5db;
}

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

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

.footer-bottom {
    width: min(1080px, calc(100% - 32px));
    margin: 28px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 14px;
}

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

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .hero-content,
    .home-search-panel,
    .amber-band,
    .detail-hero,
    .detail-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        gap: 28px;
    }

    .hero-poster {
        width: min(280px, 70vw);
    }

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

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

    .mini-grid.small {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .brand-text {
        font-size: 17px;
    }

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

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

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-arrow {
        display: none;
    }

    .home-search-panel,
    .page-hero,
    .detail-hero,
    .story-card,
    .category-overview-card {
        padding: 22px;
        border-radius: 22px;
    }

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

    .category-grid,
    .movie-grid,
    .ranking-list,
    .mini-grid,
    .mini-grid.small {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .movie-card.compact {
        grid-template-columns: 92px 1fr;
    }

    .card-body {
        padding: 12px;
    }

    .detail-poster {
        max-width: 240px;
    }
}

@media (max-width: 460px) {
    .category-grid,
    .movie-grid,
    .ranking-list,
    .mini-grid,
    .mini-grid.small {
        grid-template-columns: 1fr;
    }

    .movie-card.compact {
        grid-template-columns: 110px 1fr;
    }
}
