:root {
    --jelly-bg-primary: #f8f9fe;
    --jelly-bg-secondary: #ffffff;
    --jelly-text-primary: #2d3748;
    --jelly-text-secondary: #718096;
    --jelly-accent-mint: #b8e6d5;
    --jelly-accent-lavender: #d4c5f9;
    --jelly-accent-pink: #ffc4dd;
    --jelly-accent-blue: #c4ddff;
    --jelly-accent-peach: #ffd4c4;
    --jelly-moon: #e8eaf6;
    --jelly-purple: #8b5cf6;
    --jelly-pink: #ec4899;
    --jelly-shadow: 0 24px 60px rgba(31, 38, 135, 0.22);
    --jelly-border: rgba(255, 255, 255, 0.56);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--jelly-text-primary);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #4facfe, #00f2fe);
    background-size: 400% 400%;
    animation: gradientShift 30s ease infinite;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.55), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(255, 196, 221, 0.45), transparent 26%),
        radial-gradient(circle at 30% 90%, rgba(184, 230, 213, 0.38), transparent 30%);
}

body::after {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background: rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes moonPulse {
    0%, 100% { opacity: 0.65; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(34px);
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.52);
    box-shadow: 0 12px 34px rgba(67, 56, 202, 0.12);
}

.header-inner {
    width: min(1240px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 18px;
    background: linear-gradient(135deg, #a78bfa, #f0abfc, #f9a8d4);
    box-shadow: 0 16px 34px rgba(168, 85, 247, 0.34);
}

.brand-text {
    font-size: 22px;
    background: linear-gradient(135deg, #7c3aed, #ec4899, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.main-nav a,
.mobile-nav a,
.footer-links a {
    padding: 10px 16px;
    border-radius: 999px;
    color: #4b5563;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active,
.footer-links a:hover {
    color: #7c3aed;
    background: rgba(255, 255, 255, 0.72);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #6d28d9;
}

.mobile-nav {
    display: none;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.68);
}

main {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.jelly-card,
.jelly-glass {
    border: 1px solid var(--jelly-border);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(34px);
    box-shadow: var(--jelly-shadow);
}

.jelly-card {
    overflow: hidden;
    border-radius: 28px;
    transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}

.jelly-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 30px 70px rgba(31, 38, 135, 0.28);
}

.jelly-glass {
    border-radius: 30px;
}

.jelly-button,
.primary-action,
.ghost-action,
.hero-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.jelly-button,
.primary-action,
.hero-search button {
    color: #ffffff;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    box-shadow: 0 14px 30px rgba(139, 92, 246, 0.32);
}

.ghost-action {
    color: #5b21b6;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.jelly-button:hover,
.primary-action:hover,
.ghost-action:hover,
.hero-search button:hover {
    transform: translateY(-2px);
}

.hero-carousel {
    padding: 34px 0 26px;
}

.hero-shell {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    padding: 34px;
}

.moon-glow::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    margin-top: 60px;
    margin-left: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 234, 246, 0.5), transparent 70%);
    pointer-events: none;
    animation: moonPulse 4s ease-in-out infinite;
}

.hero-title-block {
    position: relative;
    z-index: 4;
    width: min(620px, 100%);
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(55, 48, 163, 0.22);
}

.hero-title-block span,
.page-hero span,
.section-heading span,
.hero-kicker,
.detail-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #6d28d9;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.72);
}

.hero-title-block h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 950;
}

.hero-title-block p,
.page-hero p {
    max-width: 720px;
    margin: 18px 0 0;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
}

.hero-search {
    display: flex;
    gap: 10px;
    max-width: 560px;
    margin-top: 24px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 42px rgba(79, 70, 229, 0.18);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 18px;
    color: #374151;
    background: transparent;
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.62fr);
    align-items: end;
    gap: 30px;
    padding: 270px 34px 76px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

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

.hero-image-layer {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-image-layer::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(76, 29, 149, 0.9), rgba(124, 58, 237, 0.62), rgba(236, 72, 153, 0.25)),
        linear-gradient(0deg, rgba(17, 24, 39, 0.58), rgba(17, 24, 39, 0.05));
}

.hero-image-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) saturate(1.2);
    transform: scale(1.05);
}

.hero-copy {
    color: #ffffff;
    animation: fadeInUp 0.65s ease both;
}

.hero-copy h2 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 950;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.hero-copy p {
    max-width: 680px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.85;
}

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

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

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-style: normal;
    font-weight: 800;
}

.hero-tags span,
.detail-tags span {
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.slim-actions {
    margin-top: 20px;
}

.hero-poster {
    position: relative;
    z-index: 3;
    justify-self: end;
    width: min(320px, 100%);
    aspect-ratio: 3 / 4.2;
    overflow: hidden;
    border: 12px solid rgba(255, 255, 255, 0.25);
    border-radius: 34px;
    box-shadow: 0 30px 70px rgba(17, 24, 39, 0.36);
    animation: floatSoft 7s ease-in-out infinite;
}

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

.hero-controls {
    position: absolute;
    right: 34px;
    bottom: 28px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-controls button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    color: #6d28d9;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.16);
    cursor: pointer;
}

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

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

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

.content-section {
    margin: 40px 0;
}

.section-heading {
    margin-bottom: 22px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 950;
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(55, 48, 163, 0.24);
}

.section-heading p {
    max-width: 760px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

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

.category-tile,
.category-panel {
    display: flex;
    min-height: 190px;
    padding: 22px;
    flex-direction: column;
    justify-content: space-between;
}

.category-tile strong,
.category-panel strong {
    color: #312e81;
    font-size: 22px;
    font-weight: 950;
}

.category-tile p,
.category-panel em {
    margin: 12px 0;
    color: #64748b;
    font-style: normal;
    line-height: 1.7;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-samples span {
    padding: 6px 10px;
    border-radius: 999px;
    color: #7c3aed;
    font-size: 12px;
    font-weight: 800;
    background: rgba(244, 232, 255, 0.76);
}

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

.category-panel {
    min-height: 260px;
    padding: 0;
    flex-direction: row;
}

.category-cover-stack {
    display: grid;
    width: 42%;
    min-width: 220px;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 14px;
}

.category-cover-stack img {
    width: 100%;
    height: 100%;
    min-height: 108px;
    object-fit: cover;
    border-radius: 18px;
}

.category-panel-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

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

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

.movie-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 46px rgba(31, 38, 135, 0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px) scale(1.01);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 26px 64px rgba(31, 38, 135, 0.26);
}

.compact-card {
    flex-direction: row;
    min-height: 148px;
}

.poster-frame {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4.15;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 197, 249, 0.55), rgba(255, 196, 221, 0.45));
}

.compact-card .poster-frame {
    width: 116px;
    flex: 0 0 116px;
    aspect-ratio: auto;
}

.poster-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.movie-card:hover .poster-frame img {
    transform: scale(1.08);
    filter: saturate(1.1);
}

.poster-mask {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 58%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-mask {
    opacity: 1;
}

.play-mini,
.play-orb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    box-shadow: 0 16px 36px rgba(236, 72, 153, 0.32);
}

.play-mini {
    width: 52px;
    height: 52px;
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 950;
    background: linear-gradient(135deg, #f97316, #ec4899);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.28);
}

.card-body {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.card-body strong {
    color: #1f2937;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 950;
}

.card-body em {
    display: -webkit-box;
    overflow: hidden;
    color: #64748b;
    font-size: 13px;
    font-style: normal;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #7c3aed;
    font-size: 12px;
    font-weight: 850;
}

.card-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(245, 243, 255, 0.84);
}

.tag-row span {
    padding: 4px 8px;
    color: #475569;
    font-size: 11px;
    background: rgba(226, 232, 240, 0.7);
}

.section-more {
    margin-top: 22px;
    text-align: center;
}

.page-hero {
    margin: 34px 0;
    padding: 58px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(109, 40, 217, 0.75), rgba(236, 72, 153, 0.42)),
        rgba(255, 255, 255, 0.34);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(160px, 0.6fr));
    gap: 14px;
    margin: 0 0 28px;
    padding: 18px;
}

.filter-panel label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #4c1d95;
    font-size: 13px;
    font-weight: 900;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 18px;
    outline: 0;
    padding: 0 14px;
    color: #374151;
    background: rgba(255, 255, 255, 0.82);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
    gap: 24px;
    align-items: stretch;
}

.player-card {
    overflow: hidden;
}

.player-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #111827;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #111827;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    border: 0;
    padding: 0;
    color: #ffffff;
    cursor: pointer;
    background: #111827;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(1.1);
}

.player-cover-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(236, 72, 153, 0.22), transparent 42%),
        linear-gradient(0deg, rgba(17, 24, 39, 0.78), rgba(17, 24, 39, 0.2));
}

.play-orb {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 86px;
    font-size: 28px;
}

.player-cover strong {
    position: relative;
    z-index: 2;
    font-size: 18px;
}

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

.detail-info {
    padding: 28px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(124, 58, 237, 0.72), rgba(236, 72, 153, 0.34)),
        rgba(255, 255, 255, 0.46);
}

.detail-info h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 950;
}

.detail-info p {
    margin: 16px 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.82;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 20px 0 0;
}

.detail-meta div {
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
}

.detail-meta dt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 800;
}

.detail-meta dd {
    margin: 4px 0 0;
    font-weight: 900;
}

.detail-story {
    padding: 34px;
    color: #334155;
}

.detail-story h2 {
    margin: 0 0 12px;
    color: #312e81;
    font-size: 28px;
    font-weight: 950;
}

.detail-story h2:not(:first-child) {
    margin-top: 26px;
}

.detail-story p {
    margin: 0;
    line-height: 2;
    font-size: 16px;
}

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

.site-footer {
    margin-top: 54px;
    padding: 34px 0;
    background: rgba(255, 255, 255, 0.68);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.footer-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    color: #6d28d9;
    font-size: 22px;
}

.site-footer p {
    margin: 8px 0 0;
    color: #64748b;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.is-filter-hidden {
    display: none !important;
}

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

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

    .detail-layout {
        grid-template-columns: 1fr;
    }
}

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

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .mobile-nav.is-open {
        display: flex;
        flex-direction: column;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        padding: 330px 22px 90px;
    }

    .hero-poster {
        display: none;
    }

    .hero-controls {
        left: 22px;
        right: auto;
    }

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

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

    .category-panel {
        flex-direction: column;
    }

    .category-cover-stack {
        width: 100%;
        min-width: 0;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .header-inner {
        height: 66px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

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

    .hero-shell,
    .page-hero,
    .detail-story,
    .detail-info {
        border-radius: 24px;
        padding: 20px;
    }

    .hero-search {
        border-radius: 24px;
        flex-direction: column;
    }

    .hero-search input {
        min-height: 44px;
    }

    .category-grid,
    .category-panel-grid,
    .movie-grid,
    .ranking-grid,
    .related-grid,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .compact-card {
        flex-direction: column;
    }

    .compact-card .poster-frame {
        width: 100%;
        flex-basis: auto;
        aspect-ratio: 3 / 4.15;
    }

    .detail-meta {
        grid-template-columns: 1fr;
    }
}
