:root {
    --bg: #f7f8fc;
    --panel: #ffffff;
    --ink: #121826;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.1);
    --brand: #2563eb;
    --brand-2: #9333ea;
    --brand-3: #f97316;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 24px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.rainbow-line,
.footer-rainbow {
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f97316, #eab308, #22c55e, #06b6d4, #3b82f6, #9333ea);
}

.nav-wrap {
    width: min(var(--max), calc(100% - 32px));
    height: 68px;
    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;
    font-weight: 900;
    letter-spacing: -0.04em;
    font-size: 24px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient(135deg, #dc2626, #f97316, #9333ea);
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.28);
}

.site-logo span:last-child,
.footer-logo span:last-child {
    background: linear-gradient(90deg, #ef4444, #f97316, #22c55e, #06b6d4, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #334155;
    font-weight: 700;
}

.nav-links a,
.mobile-panel a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-panel a:hover,
.mobile-panel a.active {
    color: var(--brand);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: #f1f5f9;
    border-radius: 14px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #0f172a;
    border-radius: 99px;
}

.mobile-panel {
    display: none;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.mobile-panel.is-open {
    display: grid;
    gap: 12px;
}

.section-inner {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.section-block {
    padding: 52px 0;
}

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

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.hero-copy h1 {
    margin: 0;
    letter-spacing: -0.06em;
    line-height: 1.05;
}

.section-heading h2 {
    font-size: clamp(28px, 3vw, 44px);
}

.section-heading a,
.text-link {
    color: var(--brand);
    font-weight: 800;
}

.compact-heading {
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-shell {
    background: #080b16;
}

.hero-carousel {
    position: relative;
    min-height: 690px;
    overflow: hidden;
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(249, 115, 22, 0.42), transparent 35%),
        linear-gradient(90deg, rgba(3, 7, 18, 0.95), rgba(3, 7, 18, 0.72) 48%, rgba(3, 7, 18, 0.36)),
        linear-gradient(0deg, rgba(3, 7, 18, 0.92), transparent 60%);
}

.hero-content {
    position: absolute;
    inset: 0;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    align-items: center;
    gap: 56px;
    color: #fff;
}

.hero-copy h1 {
    font-size: clamp(48px, 8vw, 92px);
    max-width: 820px;
}

.hero-copy p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 1.8vw, 21px);
    margin: 24px 0;
}

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

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags .tag {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(10px);
}

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

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

.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #f97316, #9333ea);
    box-shadow: 0 18px 32px rgba(249, 115, 22, 0.28);
}

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

.primary-btn.small {
    min-height: 44px;
    padding: 0 18px;
}

.ghost-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.ghost-btn.dark {
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.14);
    background: rgba(255, 255, 255, 0.72);
}

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

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

.hero-poster span,
.play-badge {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    font-size: 34px;
    z-index: 3;
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 34px;
    background: #fff;
}

.search-band {
    padding: 28px 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
    gap: 28px;
    align-items: center;
}

.search-panel h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.search-box,
.filter-toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-box input,
.filter-toolbar input,
.filter-toolbar select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: #0f172a;
    outline: none;
    padding: 0 16px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.filter-toolbar {
    margin-top: 34px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.07);
}

.filter-toolbar select {
    max-width: 210px;
}

.wide-toolbar input {
    flex: 1;
}

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

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

.movie-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.card-cover {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #312e81);
}

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

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

.card-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
}

.play-badge {
    width: 48px;
    height: 48px;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-badge {
    opacity: 1;
}

.rank-mark {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
}

.card-body {
    padding: 16px;
}

.card-meta {
    min-height: 20px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.card-body p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
}

.compact-card .card-body h3 {
    font-size: 16px;
}

.compact-card .card-body p {
    font-size: 13px;
}

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

.category-tile {
    position: relative;
    min-height: 180px;
    border-radius: 24px;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
    box-shadow: var(--shadow);
}

.category-tile img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 7, 18, 0.86), rgba(3, 7, 18, 0.12));
    z-index: 1;
}

.category-tile:hover img {
    transform: scale(1.08);
}

.category-tile span,
.category-tile em {
    position: absolute;
    left: 18px;
    z-index: 2;
}

.category-tile span {
    bottom: 42px;
    font-size: 22px;
    font-weight: 900;
}

.category-tile em {
    bottom: 18px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

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

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

.ranking-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

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

.rank-list .movie-card {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    border-radius: 18px;
}

.rank-list .card-cover {
    aspect-ratio: 2 / 3;
}

.rank-list .card-body {
    padding: 12px;
}

.rank-list .tag-row,
.rank-list .card-body p {
    display: none;
}

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

.mini-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.mini-card img {
    width: 76px;
    height: 102px;
    object-fit: cover;
    border-radius: 14px;
}

.mini-card strong {
    display: block;
    line-height: 1.25;
}

.mini-card em {
    display: block;
    margin-top: 6px;
    font-style: normal;
    color: var(--muted);
    font-size: 13px;
}

.page-hero {
    color: #fff;
    padding: 92px 0 64px;
    background:
        radial-gradient(circle at 20% 0%, rgba(249, 115, 22, 0.45), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.48), transparent 34%),
        linear-gradient(135deg, #0f172a, #1e1b4b 58%, #3b0764);
}

.page-hero h1 {
    font-size: clamp(44px, 7vw, 78px);
}

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

.soft-hero {
    color: #0f172a;
    background:
        radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.16), transparent 30%),
        radial-gradient(circle at 85% 5%, rgba(249, 115, 22, 0.14), transparent 28%),
        #fff;
}

.soft-hero p {
    color: var(--muted);
}

.category-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 42px;
    align-items: center;
}

.stacked-posters {
    position: relative;
    min-height: 330px;
}

.stacked-posters img {
    position: absolute;
    width: 190px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.32);
}

.stacked-posters img:nth-child(1) {
    left: 0;
    top: 36px;
    transform: rotate(-7deg);
}

.stacked-posters img:nth-child(2) {
    left: 90px;
    top: 0;
    transform: rotate(4deg);
}

.stacked-posters img:nth-child(3) {
    left: 205px;
    top: 42px;
    transform: rotate(9deg);
}

.stacked-posters img:nth-child(4) {
    left: 160px;
    top: 96px;
    transform: rotate(-2deg);
}

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

.collection-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.collection-art {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    min-height: 210px;
}

.collection-art img {
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.collection-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.collection-card p {
    margin: 0 0 14px;
    color: var(--muted);
}

.detail-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #020617;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
    filter: blur(4px) saturate(1.12);
    transform: scale(1.04);
}

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(249, 115, 22, 0.28), transparent 34%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.76) 55%, rgba(2, 6, 23, 0.56));
}

.detail-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding: 72px 0;
}

.detail-poster {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

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

.breadcrumb a {
    color: #fff;
    font-weight: 800;
}

.breadcrumb em {
    font-style: normal;
}

.detail-copy h1 {
    font-size: clamp(42px, 7vw, 82px);
}

.detail-meta {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.lead-text {
    max-width: 800px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
}

.main-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
}

.play-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.12));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-cover span {
    width: 94px;
    height: 94px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    font-size: 34px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.92), rgba(147, 51, 234, 0.92));
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

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

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

.detail-article,
.detail-side {
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 16px;
    font-size: 26px;
    letter-spacing: -0.04em;
}

.detail-article p {
    color: #334155;
    font-size: 17px;
}

.detail-side dl {
    margin: 0;
    display: grid;
    gap: 12px;
}

.detail-side dl div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.detail-side dt {
    color: var(--muted);
    font-weight: 800;
}

.detail-side dd {
    margin: 0;
}

.empty-state {
    display: none;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    text-align: center;
    color: var(--muted);
    background: #fff;
}

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

.site-footer {
    margin-top: 40px;
    color: #cbd5e1;
    background: #0f172a;
}

.footer-inner {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 1fr;
    gap: 32px;
}

.footer-inner p {
    max-width: 360px;
    color: #94a3b8;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.footer-links a {
    color: #cbd5e1;
}

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

@media (max-width: 1100px) {
    .movie-grid,
    .dense-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .ranking-panel {
        position: static;
    }

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

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

    .menu-toggle {
        display: block;
    }

    .site-logo,
    .footer-logo {
        font-size: 20px;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        padding: 72px 0 90px;
    }

    .hero-poster {
        width: 230px;
        justify-self: start;
    }

    .hero-arrow {
        display: none;
    }

    .search-panel,
    .detail-hero-inner,
    .collection-card,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .filter-toolbar,
    .search-box {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-toolbar select {
        max-width: none;
    }

    .movie-grid,
    .dense-grid,
    .rail-grid,
    .category-grid,
    .mini-grid,
    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stacked-posters {
        display: none;
    }

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

@media (max-width: 560px) {
    .section-inner,
    .nav-wrap,
    .mobile-panel,
    .footer-inner {
        width: min(100% - 22px, var(--max));
    }

    .hero-copy h1,
    .detail-copy h1,
    .page-hero h1 {
        font-size: 40px;
    }

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

    .movie-grid,
    .dense-grid,
    .rail-grid,
    .category-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-side dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
