:root {
    --color-blue: #2563eb;
    --color-cyan: #0891b2;
    --color-teal: #0d9488;
    --color-slate-950: #020617;
    --color-slate-900: #0f172a;
    --color-slate-800: #1e293b;
    --color-slate-700: #334155;
    --color-slate-600: #475569;
    --color-slate-500: #64748b;
    --color-slate-200: #e2e8f0;
    --color-slate-100: #f1f5f9;
    --color-slate-50: #f8fafc;
    --shadow-card: 0 14px 35px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 25px rgba(14, 165, 233, 0.22);
    --radius-lg: 18px;
    --radius-xl: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-slate-800);
    background: linear-gradient(180deg, var(--color-slate-50) 0%, #ffffff 45%, var(--color-slate-100) 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-blue), var(--color-cyan), var(--color-teal));
    box-shadow: 0 14px 32px rgba(2, 132, 199, 0.24);
}

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

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: var(--color-cyan);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.22);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease;
}

.nav-link::after {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    content: "";
    background: rgba(255, 255, 255, 0.88);
    transition: width 0.2s ease;
}

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

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

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.22), transparent 30%),
        linear-gradient(120deg, #2563eb 0%, #0891b2 48%, #0d9488 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.5;
    pointer-events: none;
}

.hero-glow-one {
    right: -90px;
    top: 60px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.22);
}

.hero-glow-two {
    left: -120px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    background: rgba(45, 212, 191, 0.35);
}

.hero-inner {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 70px 0 78px;
}

.hero-heading {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow,
.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 14px;
    border-radius: 999px;
    color: #dffafe;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-heading h1 {
    margin: 18px 0 16px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.hero-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.7;
}

.hero-search {
    max-width: 760px;
    margin: 30px auto 22px;
}

.hero-search form {
    display: flex;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    height: 50px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    background: transparent;
    outline: none;
}

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

.hero-search button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(90deg, #0891b2, #2563eb);
    box-shadow: var(--shadow-soft);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-search button {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-blue);
    box-shadow: none;
}

.primary-button:hover,
.hero-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.24);
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 800;
    backdrop-filter: blur(12px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.ghost-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.light-button {
    color: var(--color-slate-700);
    border-color: var(--color-slate-200);
    background: #ffffff;
}

.hero-category-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 34px;
}

.hero-category-links a {
    padding: 11px 17px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-category-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.28);
}

.hero-slider {
    position: relative;
    min-height: 420px;
}

.hero-slide {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 360px);
    gap: 34px;
    align-items: center;
    width: 100%;
    min-height: 390px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.2);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
    position: absolute;
    inset: 0;
}

.hero-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.hero-copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.12;
}

.hero-copy p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

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

.left-actions {
    justify-content: flex-start;
}

.hero-poster {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border: 6px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    box-shadow: 0 26px 52px rgba(2, 6, 23, 0.34);
}

.hero-dots {
    position: absolute;
    left: 32px;
    bottom: 24px;
    display: flex;
    gap: 9px;
}

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

.hero-dot.is-active {
    background: #ffffff;
}

.content-section,
.max-section,
.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

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

.category-preview,
.latest-section {
    margin-top: 8px;
    padding: 34px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(236, 254, 255, 0.95));
    box-shadow: 0 16px 38px rgba(148, 163, 184, 0.16);
}

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

.section-title-row h2 {
    margin: 0 0 8px;
    color: var(--color-slate-800);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
}

.section-title-row p {
    margin: 0;
    color: var(--color-slate-600);
    line-height: 1.7;
}

.section-more,
.text-link {
    color: var(--color-blue);
    font-weight: 800;
    white-space: nowrap;
}

.movie-grid {
    display: grid;
    gap: 20px;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.poster-frame {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(145deg, #dbeafe, #cffafe 48%, #ccfbf1);
}

.poster-frame img,
.hero-poster img,
.detail-side-card img,
.compact-poster img,
.ranking-cover img {
    transition: transform 0.3s ease;
}

.movie-card:hover .poster-frame img,
.hero-poster:hover img,
.compact-card:hover img,
.ranking-row:hover img {
    transform: scale(1.05);
}

.year-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.movie-card-body {
    padding: 14px;
}

.movie-card-body h2 {
    margin: 0 0 8px;
    color: var(--color-slate-800);
    font-size: 16px;
    line-height: 1.35;
}

.movie-card-body h2 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta,
.movie-summary {
    margin: 0;
    color: var(--color-slate-500);
    font-size: 13px;
    line-height: 1.6;
}

.movie-summary {
    display: -webkit-box;
    overflow: hidden;
    min-height: 62px;
    margin-top: 8px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.tag-list,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.tag-list span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    color: var(--color-blue);
    background: #eff6ff;
    font-size: 12px;
    font-weight: 800;
}

.page-shell {
    padding: 38px 0 70px;
}

.page-hero {
    overflow: hidden;
    margin-bottom: 34px;
    padding: 44px;
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.22), transparent 28%),
        linear-gradient(120deg, #2563eb 0%, #0891b2 52%, #0d9488 100%);
    box-shadow: 0 22px 54px rgba(14, 116, 144, 0.24);
}

.slim-hero,
.search-hero,
.category-hero,
.ranking-hero {
    min-height: 260px;
}

.page-hero h1 {
    max-width: 820px;
    margin: 18px 0 12px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--color-slate-500);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--color-blue);
    font-weight: 800;
}

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

.category-tile {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.category-tile-link {
    display: block;
    padding: 28px;
    color: #ffffff;
    background: linear-gradient(120deg, var(--color-blue), var(--color-cyan), var(--color-teal));
}

.category-tile-link span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 800;
}

.category-tile-link strong {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
}

.category-tile-link em {
    display: block;
    color: rgba(255, 255, 255, 0.84);
    font-style: normal;
    line-height: 1.7;
}

.compact-list {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.compact-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
    min-width: 0;
}

.compact-poster {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 12px;
    background: linear-gradient(145deg, #dbeafe, #cffafe);
}

.compact-info {
    min-width: 0;
}

.compact-info strong,
.compact-info em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-info strong {
    color: var(--color-slate-800);
    font-size: 15px;
}

.compact-info em {
    margin-top: 4px;
    color: var(--color-slate-500);
    font-size: 13px;
    font-style: normal;
}

.all-category-grid {
    align-items: start;
}

.ranking-list-section {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 64px 78px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.ranking-number {
    color: var(--color-blue);
    font-size: 26px;
    font-weight: 900;
    text-align: center;
}

.ranking-cover {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 12px;
    background: linear-gradient(145deg, #dbeafe, #cffafe);
}

.ranking-info h2 {
    margin: 0 0 6px;
    color: var(--color-slate-800);
    font-size: 18px;
}

.ranking-info p,
.ranking-info span {
    display: block;
    margin: 0;
    color: var(--color-slate-500);
    line-height: 1.6;
}

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

.player-panel {
    grid-column: 1 / -1;
}

.player-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    background: var(--color-slate-950);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.28);
}

.movie-player {
    display: block;
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    border: 0;
    color: #ffffff;
    background:
        radial-gradient(circle at center, rgba(37, 99, 235, 0.45), rgba(2, 6, 23, 0.72)),
        rgba(2, 6, 23, 0.62);
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    color: var(--color-blue);
    background: #ffffff;
    font-size: 30px;
    box-shadow: 0 20px 46px rgba(255, 255, 255, 0.24);
}

.detail-side-card,
.detail-main-card {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.detail-side-card {
    overflow: hidden;
}

.detail-side-card img {
    aspect-ratio: 2 / 3;
    height: auto;
    background: linear-gradient(145deg, #dbeafe, #cffafe);
}

.detail-side-card div {
    padding: 18px;
}

.detail-side-card span,
.detail-side-card strong {
    display: block;
}

.detail-side-card span {
    color: var(--color-blue);
    font-weight: 900;
}

.detail-side-card strong {
    margin-top: 6px;
    color: var(--color-slate-700);
}

.detail-main-card {
    padding: 28px;
}

.detail-main-card h1 {
    margin: 0 0 12px;
    color: var(--color-slate-900);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
}

.detail-one-line {
    margin: 0 0 22px;
    color: var(--color-slate-600);
    font-size: 18px;
    line-height: 1.8;
}

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

.detail-meta-grid div {
    padding: 14px;
    border-radius: 16px;
    background: var(--color-slate-50);
}

.detail-meta-grid dt {
    margin-bottom: 6px;
    color: var(--color-slate-500);
    font-size: 13px;
}

.detail-meta-grid dd {
    margin: 0;
    color: var(--color-slate-800);
    font-weight: 900;
}

.article-text {
    margin-top: 28px;
}

.article-text h2 {
    margin: 26px 0 10px;
    color: var(--color-slate-900);
    font-size: 24px;
}

.article-text p {
    margin: 0;
    color: var(--color-slate-700);
    font-size: 17px;
    line-height: 1.95;
}

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

.search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px 170px;
    gap: 12px;
    max-width: 840px;
    margin-top: 28px;
}

.search-panel input,
.search-panel select {
    height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    outline: none;
    backdrop-filter: blur(12px);
}

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

.search-panel option {
    color: var(--color-slate-900);
}

.site-footer {
    color: #e2e8f0;
    background: var(--color-slate-900);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 220px 220px;
    gap: 40px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
}

.footer-logo {
    color: #ffffff;
}

.footer-brand p {
    max-width: 520px;
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

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

.footer-column a {
    color: #cbd5e1;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #67e8f9;
}

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

    .detail-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .detail-side-card {
        display: grid;
        grid-template-columns: 150px 1fr;
        align-items: center;
    }
}

@media (max-width: 820px) {
    .header-inner {
        height: auto;
        min-height: 64px;
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px 0 6px;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-link {
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.12);
    }

    .nav-link::after {
        display: none;
    }

    .hero-inner {
        padding: 46px 0 54px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 22px;
    }

    .hero-slider {
        min-height: auto;
    }

    .hero-poster {
        max-width: 240px;
        margin: 0 auto;
    }

    .hero-dots {
        position: static;
        justify-content: center;
        margin-top: 14px;
    }

    .hero-search form,
    .section-title-row,
    .hero-actions,
    .detail-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-search button {
        width: 100%;
    }

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

    .category-preview,
    .latest-section,
    .page-hero,
    .detail-main-card {
        padding: 24px;
    }

    .category-tile-grid,
    .footer-inner,
    .search-panel {
        grid-template-columns: 1fr;
    }

    .ranking-row {
        grid-template-columns: 48px 70px 1fr;
    }

    .ranking-row .text-link {
        grid-column: 2 / -1;
    }

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

@media (max-width: 520px) {
    .site-logo {
        font-size: 19px;
    }

    .hero-heading h1,
    .page-hero h1 {
        letter-spacing: -0.03em;
    }

    .six-grid {
        gap: 14px;
    }

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

    .movie-summary {
        display: none;
    }

    .detail-side-card {
        grid-template-columns: 110px 1fr;
    }

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