:root {
    --bg-950: #2e054b;
    --bg-900: #3b0764;
    --bg-850: #4a044e;
    --bg-800: #581c87;
    --twilight-700: #7e22ce;
    --twilight-600: #9333ea;
    --twilight-500: #a855f7;
    --twilight-400: #c084fc;
    --twilight-300: #d8b4fe;
    --twilight-200: #e9d5ff;
    --fuchsia-500: #d946ef;
    --orange-300: #fdba74;
    --text: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.72);
    --text-muted: rgba(255, 255, 255, 0.56);
    --glass: rgba(255, 255, 255, 0.10);
    --glass-strong: rgba(255, 255, 255, 0.16);
    --border: rgba(255, 255, 255, 0.18);
    --shadow: 0 18px 60px rgba(18, 4, 38, 0.45);
    --glow: 0 0 34px rgba(217, 70, 239, 0.28);
    --radius: 22px;
    --radius-small: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at 12% 10%, rgba(217, 70, 239, 0.22), transparent 28rem),
        radial-gradient(circle at 82% 8%, rgba(253, 186, 116, 0.15), transparent 22rem),
        linear-gradient(135deg, var(--bg-900), var(--bg-800) 48%, var(--bg-850));
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.glass-effect {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.dusk-card {
    border: 1px solid rgba(217, 70, 239, 0.22);
    border-radius: var(--radius-small);
    background: linear-gradient(135deg, rgba(112, 26, 117, 0.42), rgba(107, 33, 168, 0.36));
    box-shadow: 0 14px 44px rgba(20, 4, 44, 0.26);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    overflow: hidden;
}

.dusk-card:hover {
    transform: translateY(-5px);
    border-color: rgba(216, 180, 254, 0.48);
    box-shadow: 0 18px 55px rgba(217, 70, 239, 0.24);
}

.btn-primary,
.header-search button,
.mobile-search button,
.hero-search button,
.filter-search button,
.player-overlay,
.cta-link {
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(90deg, var(--twilight-600), var(--fuchsia-500));
    box-shadow: 0 12px 34px rgba(139, 92, 246, 0.36);
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.btn-primary:hover,
.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.filter-search button:hover,
.player-overlay:hover,
.cta-link:hover {
    transform: translateY(-1px) scale(1.02);
    filter: brightness(1.08);
    box-shadow: 0 0 28px rgba(216, 180, 254, 0.38);
}

.gradient-text {
    color: transparent;
    background: linear-gradient(90deg, var(--twilight-300), #f0abfc, var(--orange-300));
    -webkit-background-clip: text;
    background-clip: text;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background: rgba(46, 5, 75, 0.86);
}

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

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

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--twilight-500), var(--fuchsia-500));
    box-shadow: var(--glow);
}

.brand-name {
    white-space: nowrap;
    font-size: 1.12rem;
}

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

.nav-link {
    position: relative;
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 650;
    transition: color 0.2s ease;
}

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

.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--twilight-400), var(--fuchsia-500));
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.header-search input,
.mobile-search input,
.hero-search input,
.filter-search input {
    width: 248px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    outline: none;
    padding: 11px 16px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.filter-search input:focus {
    border-color: rgba(216, 180, 254, 0.9);
    background: rgba(255, 255, 255, 0.15);
}

.header-search input::placeholder,
.mobile-search input::placeholder,
.hero-search input::placeholder,
.filter-search input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.header-search button,
.mobile-search button,
.hero-search button,
.filter-search button {
    padding: 11px 18px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: #fff;
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto 18px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(30, 3, 54, 0.78);
}

.mobile-search {
    display: flex;
    gap: 8px;
}

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

.mobile-nav-links,
.mobile-category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.mobile-category-link,
.mobile-nav-links .nav-link {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
}

.page-shell {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 70px;
}

.hero-carousel {
    position: relative;
    min-height: 76vh;
    width: min(1360px, calc(100% - 28px));
    margin: 26px auto 40px;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow), inset 0 0 90px rgba(216, 180, 254, 0.10);
}

.hero-carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(28, 4, 52, 0.95), rgba(62, 11, 93, 0.72) 42%, rgba(20, 3, 40, 0.34)),
        var(--hero-image, none);
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    filter: saturate(1.1);
}

.hero-carousel::after {
    content: "";
    position: absolute;
    inset: auto -10% -35% 30%;
    height: 55%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.33), transparent 64%);
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
    gap: 48px;
    align-items: center;
    padding: clamp(28px, 5vw, 74px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.65s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hero-content,
.hero-media {
    position: relative;
    z-index: 2;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: var(--twilight-200);
    background: rgba(255, 255, 255, 0.10);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-content h1,
.hero-content h2 {
    max-width: 760px;
    margin: 22px 0 18px;
    font-size: clamp(2.4rem, 7vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero-content p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.85;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.hero-meta span,
.tag-row span,
.detail-tag-row span,
.filter-chips a,
.category-card .pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.10);
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 650;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 26px;
}

.hero-actions a,
.cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
}

.hero-actions .ghost-link,
.ghost-link {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: none;
}

.hero-search {
    display: flex;
    gap: 10px;
    width: min(620px, 100%);
    margin-top: 20px;
}

.hero-search input {
    flex: 1;
    width: 100%;
    min-height: 50px;
}

.hero-media-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42), 0 0 36px rgba(216, 180, 254, 0.20);
    transform: rotate(2deg);
}

.hero-media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.70));
}

.hero-media-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
}

.hero-card-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
}

.hero-card-caption strong {
    display: block;
    font-size: 1.35rem;
}

.hero-card-caption span {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.hero-dots {
    position: absolute;
    z-index: 4;
    left: clamp(28px, 5vw, 74px);
    bottom: 26px;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 38px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.hero-dots button.is-active {
    background: #fff;
}

.section-head,
.page-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin: 36px 0 22px;
}

.page-title {
    align-items: flex-start;
    flex-direction: column;
    max-width: 860px;
}

.section-head h2,
.page-title h1,
.detail-title h1 {
    margin: 0;
    font-size: clamp(1.7rem, 4vw, 3.4rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.section-head p,
.page-title p,
.detail-title p {
    margin: 9px 0 0;
    color: var(--text-soft);
    line-height: 1.78;
}

.section-head a {
    color: var(--twilight-200);
    font-weight: 800;
    white-space: nowrap;
}

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

.movie-card-link {
    display: block;
    height: 100%;
}

.poster-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.28), rgba(217, 70, 239, 0.18));
}

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

.video-thumbnail {
    cursor: pointer;
}

.movie-card:hover .poster-frame img,
.category-poster-stack a:hover img {
    transform: scale(1.08);
    filter: saturate(1.12) contrast(1.04);
}

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.74));
    opacity: 0.88;
}

.poster-badge,
.poster-rating {
    position: absolute;
    z-index: 2;
    top: 10px;
    border-radius: 999px;
    padding: 5px 9px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
}

.poster-badge {
    left: 10px;
}

.poster-rating {
    right: 10px;
    background: linear-gradient(90deg, rgba(253, 186, 116, 0.92), rgba(217, 70, 239, 0.92));
}

.movie-card-body {
    display: flex;
    min-height: 196px;
    flex-direction: column;
    padding: 14px;
}

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

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

.movie-meta-row,
.rank-meta,
.detail-meta,
.category-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
}

.tag-row,
.detail-tag-row,
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
    padding-top: 12px;
}

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

.category-card {
    position: relative;
    min-height: 230px;
    padding: 20px;
}

.category-card h2,
.category-card h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
}

.category-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.72;
}

.category-poster-stack {
    display: flex;
    gap: 8px;
    margin: 18px 0;
}

.category-poster-stack a {
    flex: 1;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.category-poster-stack img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card .category-link {
    display: inline-flex;
    align-items: center;
    color: var(--twilight-200);
    font-weight: 800;
}

.rank-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
}

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

.rank-item {
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.rank-item:hover {
    transform: translateX(5px);
    border-color: rgba(216, 180, 254, 0.5);
}

.rank-item a {
    display: grid;
    grid-template-columns: 54px 74px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
}

.rank-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--twilight-600), var(--fuchsia-500));
}

.rank-item img {
    width: 74px;
    height: 98px;
    border-radius: 12px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
}

.rank-item h3 {
    margin: 0 0 7px;
    font-size: 1.05rem;
}

.rank-item p {
    margin: 0 0 10px;
    color: var(--text-muted);
    line-height: 1.55;
}

.side-panel {
    position: sticky;
    top: 100px;
    align-self: start;
    padding: 22px;
    border-radius: 22px;
}

.side-panel h2 {
    margin: 0 0 14px;
}

.filter-panel {
    margin: 22px 0;
    padding: 18px;
    border-radius: 22px;
}

.filter-search {
    display: flex;
    gap: 10px;
}

.filter-search input {
    flex: 1;
    width: 100%;
}

.empty-state {
    display: none;
    padding: 48px 20px;
    text-align: center;
    color: var(--text-soft);
}

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

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: 30px;
    align-items: end;
    min-height: 520px;
    padding: 36px;
    border-radius: 32px;
    background:
        linear-gradient(90deg, rgba(46, 5, 75, 0.96), rgba(88, 28, 135, 0.78)),
        var(--detail-bg, none);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.detail-poster {
    width: min(360px, 100%);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.4);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--twilight-200);
}

.detail-title h1 {
    font-size: clamp(2.3rem, 6vw, 5rem);
}

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

.player-section {
    margin-top: 30px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #05020c;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background:
        radial-gradient(circle at center, rgba(147, 51, 234, 0.58), rgba(20, 2, 34, 0.72)),
        rgba(0, 0, 0, 0.42);
    font-size: 1.2rem;
}

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

.play-symbol {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.play-symbol::before {
    content: "";
    display: block;
    margin-left: 4px;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 20px solid #fff;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    margin-top: 28px;
}

.detail-panel {
    padding: 24px;
    border-radius: 24px;
}

.detail-panel h2,
.detail-sidebar h2 {
    margin: 0 0 12px;
    font-size: 1.45rem;
}

.detail-panel p {
    color: var(--text-soft);
    line-height: 1.9;
}

.detail-sidebar {
    display: grid;
    gap: 16px;
}

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

.related-list a {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.related-list img {
    width: 58px;
    height: 78px;
    border-radius: 10px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
}

.related-list strong {
    display: block;
    line-height: 1.35;
}

.related-list span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.site-footer {
    margin-top: 60px;
    padding: 44px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(31, 3, 54, 0.50);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 26px;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.footer-grid p {
    max-width: 560px;
    color: var(--text-muted);
    line-height: 1.75;
}

.footer-grid h2 {
    margin: 0 0 12px;
    font-size: 1rem;
}

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

.footer-links a {
    color: var(--text-soft);
}

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

.footer-bottom {
    width: min(1280px, calc(100% - 32px));
    margin: 28px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fade-in {
    animation: fadeIn 0.6s ease both;
}

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

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

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

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

    .side-panel {
        position: static;
    }
}

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

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

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

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

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 24px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: clamp(2.2rem, 12vw, 4rem);
    }

    .hero-media-card {
        width: min(300px, 80vw);
        margin: 0 auto;
        transform: none;
    }

    .hero-search,
    .filter-search {
        flex-direction: column;
    }

    .detail-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 24px;
    }

    .detail-poster {
        width: min(260px, 70vw);
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(100% - 24px, 1280px);
        padding-top: 20px;
    }

    .movie-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .movie-card-body {
        min-height: 178px;
        padding: 12px;
    }

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

    .rank-item a {
        grid-template-columns: 42px 62px minmax(0, 1fr);
        gap: 10px;
    }

    .rank-item img {
        width: 62px;
        height: 84px;
    }

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

    .brand-name {
        font-size: 1rem;
    }
}
