:root {
    --page-bg: #f8fafc;
    --ink: #111827;
    --muted: #6b7280;
    --soft: #f3f4f6;
    --line: #e5e7eb;
    --card: #ffffff;
    --dark: #111827;
    --dark-2: #1f2937;
    --brand: #111827;
    --accent: #dc2626;
    --accent-2: #f97316;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background: linear-gradient(135deg, #f8fafc 0%, #f3f4f6 52%, #fafaf9 100%);
}

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: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.78);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, #111827, #374151);
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.18);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: -0.03em;
}

.brand-text em {
    margin-top: 4px;
    font-style: normal;
    font-size: 12px;
    color: var(--muted);
}

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

.nav-link {
    position: relative;
    font-weight: 700;
    color: #374151;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #111827;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: #111827;
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--line);
    background: #fff;
}

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

.mobile-panel nav,
.mobile-category-links {
    display: grid;
    gap: 10px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16px 0;
}

.mobile-category-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
}

.mobile-category-links a,
.mobile-panel .nav-link {
    padding: 12px 14px;
    border-radius: 14px;
    background: #f9fafb;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    color: #fff;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

.hero-layer {
    background:
        radial-gradient(circle at 76% 38%, rgba(248, 113, 113, 0.32), transparent 26%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.98) 0%, rgba(17, 24, 39, 0.82) 45%, rgba(17, 24, 39, 0.38) 100%),
        linear-gradient(0deg, rgba(17, 24, 39, 0.78), rgba(17, 24, 39, 0.08));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 360px;
    align-items: center;
    gap: 56px;
    min-height: 680px;
    padding: 72px 0 90px;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #fef3c7;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero h1 {
    margin: 0 0 14px;
    max-width: 820px;
    font-size: clamp(38px, 7vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.hero h2 {
    margin: 0 0 18px;
    font-size: clamp(26px, 3.2vw, 46px);
    letter-spacing: -0.04em;
}

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

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

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #4b5563;
    font-size: 12px;
    font-weight: 700;
    background: #f3f4f6;
}

.hero-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    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:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 16px 30px rgba(239, 68, 68, 0.24);
}

.btn.ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn.ghost.dark {
    color: #111827;
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.hero-poster {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 30px;
    aspect-ratio: 2 / 3;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.36);
    transform: rotate(2deg);
}

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

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

.hero-poster span,
.card-play {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(10px);
}

.hero-poster span {
    left: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    font-size: 22px;
}

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

.hero-controls > button,
.rail-btn {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    color: #111827;
    font-size: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
    cursor: pointer;
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.hero-dots button.active {
    width: 28px;
    background: #fff;
}

.search-panel {
    margin-top: -38px;
    position: relative;
    z-index: 8;
}

.search-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    align-items: center;
    gap: 24px;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.search-card h2,
.section-head h2,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    letter-spacing: -0.04em;
}

.search-card p,
.section-head p,
.page-hero p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.global-search,
.search-wide,
.filter-bar {
    display: flex;
    gap: 12px;
}

.global-search input,
.global-search button,
.search-wide input,
.search-wide select,
.filter-bar input,
.filter-bar select {
    min-height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
}

.global-search input,
.search-wide input,
.filter-bar input {
    flex: 1;
    min-width: 0;
    padding: 0 18px;
    color: #111827;
    background: #fff;
}

.global-search button {
    padding: 0 24px;
    border: 0;
    color: #fff;
    font-weight: 900;
    background: #111827;
    cursor: pointer;
}

.search-wide select,
.filter-bar select {
    padding: 0 18px;
    background: #fff;
}

.content-section {
    padding: 62px 0;
}

.content-section.alt-section {
    padding-top: 10px;
}

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

.section-head h2 {
    font-size: clamp(26px, 3vw, 38px);
}

.compact-head h2 {
    font-size: 30px;
}

.section-link {
    flex: 0 0 auto;
    color: #111827;
    font-weight: 900;
    border-bottom: 2px solid #111827;
}

.rail-wrap {
    position: relative;
}

.movie-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(172px, 196px);
    gap: 18px;
    overflow-x: auto;
    padding: 4px 2px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.movie-rail::-webkit-scrollbar {
    display: none;
}

.rail-btn {
    position: absolute;
    top: 38%;
    z-index: 4;
}

.rail-prev {
    left: -18px;
}

.rail-next {
    right: -18px;
}

.movie-card {
    overflow: hidden;
    border-radius: 20px;
    background: var(--card);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    scroll-snap-align: start;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.14);
}

.card-cover {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 2 / 3;
    background: #111827;
}

.card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(10px);
}

.card-play {
    left: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
}

.card-body {
    padding: 14px;
}

.card-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
}

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

.movie-card h3 a:hover,
.ranking-info h2 a:hover {
    color: #dc2626;
}

.movie-card p {
    margin: 0 0 12px;
    min-height: 42px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
}

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

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

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

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

.category-tile,
.category-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 150px;
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.category-tile::after,
.category-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.16), rgba(249, 115, 22, 0.12));
}

.category-tile strong,
.category-card span {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.category-tile span,
.category-card p {
    position: relative;
    z-index: 1;
    color: #6b7280;
    line-height: 1.7;
}

.category-tile em,
.category-card strong {
    position: relative;
    z-index: 1;
    width: fit-content;
    padding: 6px 11px;
    border-radius: 999px;
    color: #fff;
    font-style: normal;
    font-size: 12px;
    background: #111827;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 28px;
}

.rank-list {
    display: grid;
    gap: 10px;
}

.rank-row {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.rank-no {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #fff;
    font-weight: 900;
    background: #111827;
}

.rank-name {
    overflow: hidden;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-info {
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

.spotlight-box {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 18%, rgba(248, 113, 113, 0.32), transparent 34%),
        linear-gradient(135deg, #111827, #374151);
    box-shadow: var(--shadow);
}

.spotlight-box h2 {
    margin: 0 0 12px;
    font-size: 32px;
    letter-spacing: -0.05em;
}

.spotlight-box p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
}

.spotlight-links,
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.spotlight-links a,
.filter-chip {
    padding: 9px 12px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.filter-chip {
    color: #111827;
    background: #fff;
    border-color: #e5e7eb;
}

.page-main {
    min-height: 70vh;
}

.page-hero {
    padding: 76px 0 48px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(248, 113, 113, 0.28), transparent 30%),
        linear-gradient(135deg, #111827, #374151);
}

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

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

.page-hero .global-search,
.search-wide {
    max-width: 760px;
    margin-top: 24px;
}

.filter-bar {
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

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

.ranking-grid {
    display: grid;
    gap: 16px;
}

.ranking-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.ranking-cover {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 2 / 3;
    background: #111827;
}

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

.ranking-cover span {
    position: absolute;
    top: 8px;
    left: 8px;
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 12px;
    color: #fff;
    font-weight: 900;
    background: rgba(17, 24, 39, 0.78);
}

.ranking-info h2 {
    margin: 8px 0 10px;
    font-size: 22px;
}

.ranking-info p {
    margin: 0 0 12px;
    color: #6b7280;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 24px 0;
    color: #6b7280;
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb a:hover {
    color: #111827;
}

.detail-main {
    background: linear-gradient(135deg, #f8fafc, #f3f4f6);
}

.player-area {
    padding: 0 0 36px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.48), rgba(2, 6, 23, 0.12));
    cursor: pointer;
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    font-size: 34px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 18px 40px rgba(239, 68, 68, 0.35);
}

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

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

.detail-poster {
    position: sticky;
    top: 98px;
    overflow: hidden;
    border-radius: 26px;
    background: #111827;
    box-shadow: var(--shadow);
}

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

.detail-copy {
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.detail-copy .eyebrow {
    color: #7c2d12;
    background: #ffedd5;
    border-color: #fed7aa;
}

.detail-copy h1 {
    font-size: clamp(30px, 4vw, 50px);
}

.detail-copy .lead {
    margin: 16px 0 18px;
    color: #374151;
    font-size: 19px;
    line-height: 1.8;
}

.detail-meta {
    gap: 10px;
    margin: 14px 0 18px;
}

.detail-meta span {
    padding: 8px 11px;
    border-radius: 999px;
    background: #f9fafb;
}

.detail-tags {
    margin-bottom: 28px;
}

.detail-copy h2 {
    margin: 30px 0 12px;
    font-size: 24px;
}

.detail-copy p {
    color: #4b5563;
    line-height: 1.9;
}

.pager-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.pager-links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #111827;
    font-weight: 800;
    background: #f3f4f6;
}

.site-footer {
    margin-top: 42px;
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 36px;
    padding: 50px 0;
}

.footer-brand .brand-mark {
    background: #fff;
    color: #111827;
}

.footer-brand span:last-child {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.site-footer p {
    max-width: 460px;
    color: #9ca3af;
    line-height: 1.8;
}

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

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

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

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

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

@media (max-width: 1060px) {
    .hero-content {
        grid-template-columns: minmax(0, 1fr) 280px;
    }

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

    .category-grid,
    .category-list-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .menu-toggle {
        display: flex;
    }

    .hero,
    .hero-content {
        min-height: 760px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 52px;
    }

    .hero-poster {
        width: min(260px, 72vw);
        margin: 0 auto;
        transform: none;
    }

    .search-card,
    .split-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .global-search,
    .search-wide,
    .filter-bar {
        flex-direction: column;
    }

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

    .category-grid,
    .category-list-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        position: static;
        max-width: 320px;
    }

    .rank-row {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .rank-info {
        grid-column: 2;
    }

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

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

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

    .brand-text em {
        font-size: 11px;
    }

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

    .hero h2 {
        font-size: 26px;
    }

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

    .movie-grid {
        gap: 12px;
    }

    .card-body {
        padding: 12px;
    }

    .rail-btn {
        display: none;
    }

    .ranking-card {
        grid-template-columns: 86px minmax(0, 1fr);
    }

    .ranking-info p,
    .ranking-info .tag-row {
        display: none;
    }

    .detail-copy {
        padding: 24px 18px;
    }
}
