:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: #111827;
    --bg-card-soft: #162033;
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --amber: #f59e0b;
    --amber-soft: rgba(245, 158, 11, 0.14);
    --blue: #38bdf8;
    --rose: #fb7185;
    --green: #22c55e;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --radius: 24px;
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 0%, rgba(245, 158, 11, 0.13), transparent 30%),
        radial-gradient(circle at 80% 10%, rgba(56, 189, 248, 0.08), transparent 24%),
        linear-gradient(180deg, #020617 0%, #08111f 52%, #020617 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(2, 6, 23, 0.86);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    backdrop-filter: blur(18px);
}

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

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #111827;
    background: linear-gradient(135deg, #fde68a, #f59e0b 60%, #fb7185);
    box-shadow: 0 12px 34px rgba(245, 158, 11, 0.32);
}

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

.desktop-nav,
.header-actions,
.mobile-nav {
    display: flex;
    align-items: center;
}

.desktop-nav {
    gap: 6px;
}

.nav-link,
.search-open,
.menu-toggle {
    border: 0;
    color: var(--muted-strong);
    background: transparent;
    cursor: pointer;
}

.nav-link,
.search-open {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active,
.search-open:hover {
    color: #fff;
    background: rgba(148, 163, 184, 0.13);
}

.nav-link:hover,
.search-open:hover {
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 190px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 12px;
    color: var(--muted-strong);
}

.dropdown-menu a:hover {
    color: #fff;
    background: rgba(148, 163, 184, 0.12);
}

.header-actions {
    gap: 10px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(148, 163, 184, 0.12);
}

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

.mobile-nav {
    display: none;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.96);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
}

.mobile-nav a,
.mobile-nav .nav-link {
    justify-content: center;
}

.search-layer {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: start center;
    padding: 96px 18px 18px;
    background: rgba(2, 6, 23, 0.74);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.search-layer.is-open {
    opacity: 1;
    visibility: visible;
}

.search-panel {
    width: min(720px, 100%);
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
}

.search-panel h2 {
    margin: 0 0 6px;
    font-size: 30px;
}

.search-panel p {
    margin: 0 0 18px;
    color: var(--muted);
}

.search-close {
    float: right;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(148, 163, 184, 0.14);
    cursor: pointer;
}

.search-input {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 18px;
    color: #fff;
    outline: 0;
    background: rgba(2, 6, 23, 0.8);
}

.search-results {
    display: grid;
    gap: 12px;
    max-height: 55vh;
    margin-top: 16px;
    overflow: auto;
}

.search-result-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(148, 163, 184, 0.07);
}

.search-result-item img {
    width: 56px;
    height: 78px;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e293b, #334155);
}

.search-result-item strong {
    display: block;
    font-size: 16px;
}

.search-result-item span,
.search-result-item p {
    display: block;
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px;
}

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

.hero-section {
    position: relative;
    min-height: 680px;
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 34px;
    background: #0f172a;
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: center;
    gap: 34px;
    padding: 72px;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    filter: blur(16px) saturate(120%);
    transform: scale(1.08);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(15, 23, 42, 0.82) 48%, rgba(2, 6, 23, 0.58) 100%),
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.22), transparent 26%);
}

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

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 12px;
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 999px;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.12);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-content h1,
.inner-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 84px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.hero-content p,
.inner-hero p,
.detail-one-line {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--muted-strong);
    font-size: 18px;
}

.hero-tags,
.movie-meta,
.tag-row,
.hero-actions,
.inline-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

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

.hero-tags span,
.movie-meta span,
.tag-row span {
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(148, 163, 184, 0.08);
    font-size: 13px;
}

.hero-tags span,
.tag-row span {
    padding: 6px 10px;
}

.movie-meta span {
    padding: 4px 9px;
}

.hero-actions {
    margin-top: 30px;
}

.primary-button,
.ghost-button,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
    color: #111827;
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    box-shadow: 0 18px 42px rgba(245, 158, 11, 0.3);
}

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

.ghost-button,
.section-link {
    color: #fff;
    border: 1px solid var(--line);
    background: rgba(148, 163, 184, 0.1);
}

.primary-button.small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
}

.hero-poster {
    display: block;
    justify-self: center;
    width: min(360px, 100%);
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    background: linear-gradient(135deg, #1e293b, #334155);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

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

.hero-dots {
    position: absolute;
    left: 72px;
    bottom: 44px;
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 38px;
    height: 6px;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.24);
    cursor: pointer;
}

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

.quick-search-band {
    display: grid;
    grid-template-columns: 1fr repeat(3, auto);
    gap: 12px;
    align-items: center;
    margin: 22px 0 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
}

.quick-search-band span,
.quick-search-band strong {
    display: block;
}

.quick-search-band span {
    color: var(--muted);
    font-size: 13px;
}

.quick-search-band a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(148, 163, 184, 0.11);
}

.content-section {
    margin-top: 72px;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--muted);
}

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

.category-card,
.category-feature-card,
.movie-card,
.rank-item,
.text-panel,
.player-card {
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.category-card {
    min-height: 230px;
    padding: 18px;
    border-radius: 24px;
}

.category-card-main {
    display: grid;
    gap: 10px;
}

.category-card-main span,
.category-card-main strong {
    display: block;
}

.category-card-main span {
    font-size: 22px;
    font-weight: 900;
}

.category-card-main strong {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    color: #111827;
    background: #f59e0b;
}

.category-card-main em {
    color: var(--muted);
    font-style: normal;
    font-size: 14px;
}

.category-samples {
    display: grid;
    gap: 6px;
    margin-top: 16px;
}

.category-samples a,
.inline-links a {
    color: var(--muted-strong);
    font-size: 14px;
}

.category-samples a:hover,
.inline-links a:hover {
    color: #fbbf24;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(30, 41, 59, 0.84);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #334155);
}

.poster-link img,
.rank-poster img,
.detail-poster img,
.category-poster-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #111827, #334155);
}

.poster-link::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.poster-play,
.poster-score {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.poster-play {
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
    color: #111827;
    background: #f59e0b;
}

.poster-score {
    top: 12px;
    right: 12px;
    padding: 5px 8px;
    color: #fff;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(8px);
}

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

.movie-title {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.movie-meta {
    gap: 6px;
    margin-top: 8px;
}

.movie-meta.large {
    margin-top: 20px;
}

.tag-row {
    gap: 6px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 76px 58px 1fr;
    gap: 16px;
    align-items: center;
    padding: 12px;
    border-radius: 22px;
}

.rank-poster {
    display: block;
    height: 104px;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #111827, #334155);
}

.rank-number {
    color: #f59e0b;
    font-size: 30px;
    font-weight: 950;
}

.rank-copy a {
    color: #fff;
    font-size: 18px;
    font-weight: 850;
}

.rank-copy p {
    margin: 5px 0 0;
    color: var(--muted);
}

.inner-hero {
    position: relative;
    margin-top: 24px;
    padding: 70px;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.2), transparent 26%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.74));
    box-shadow: var(--shadow);
}

.inline-links {
    margin-top: 24px;
}

.inline-links a {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.08);
}

.category-feature-grid {
    display: grid;
    gap: 18px;
}

.category-feature-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    padding: 22px;
    border-radius: 26px;
}

.category-poster-stack {
    position: relative;
    height: 230px;
}

.category-poster-stack img {
    position: absolute;
    width: 150px;
    height: 220px;
    border: 5px solid #0f172a;
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.category-poster-stack img:nth-child(1) {
    left: 0;
    top: 8px;
    z-index: 3;
}

.category-poster-stack img:nth-child(2) {
    left: 70px;
    top: 0;
    z-index: 2;
    opacity: 0.76;
}

.category-poster-stack img:nth-child(3) {
    left: 128px;
    top: 18px;
    z-index: 1;
    opacity: 0.55;
}

.category-feature-card h2 {
    margin: 0 0 10px;
    font-size: 30px;
}

.category-feature-card p {
    max-width: 700px;
    margin: 0 0 12px;
    color: var(--muted);
}

.category-samples.wide {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.category-samples.wide a {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.08);
}

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

.movie-card.compact .movie-card-body p {
    min-height: 42px;
}

.detail-layout {
    margin-top: 24px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

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

.detail-hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 36px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 10%, rgba(251, 113, 133, 0.14), transparent 28%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.76));
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 26px;
    background: linear-gradient(135deg, #111827, #334155);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.detail-copy h1 {
    font-size: clamp(36px, 5vw, 66px);
}

.detail-tags {
    margin: 22px 0;
}

.detail-section {
    margin-top: 34px;
}

.player-card {
    padding: 18px;
    border-radius: 30px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    background: #000;
}

.video-shell video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.video-start {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    border: 0;
    color: #fff;
    background:
        radial-gradient(circle at center, rgba(245, 158, 11, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.26), rgba(2, 6, 23, 0.82));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-shell.is-playing .video-start {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    padding-left: 5px;
    border-radius: 50%;
    color: #111827;
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    box-shadow: 0 18px 60px rgba(245, 158, 11, 0.45);
    font-size: 30px;
}

.video-start strong {
    font-size: clamp(20px, 4vw, 36px);
}

.video-start em {
    color: var(--muted-strong);
    font-style: normal;
}

.text-panel {
    margin-bottom: 16px;
    padding: 28px;
    border-radius: 24px;
}

.text-panel h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.text-panel p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 17px;
}

.site-footer {
    margin-top: 80px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.74);
}

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

.footer-grid p,
.footer-grid a {
    color: var(--muted);
}

.footer-grid h3 {
    margin: 0 0 12px;
}

.footer-grid a {
    display: block;
    margin-top: 8px;
}

.footer-grid a:hover {
    color: #fbbf24;
}

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

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

    .hero-slide {
        grid-template-columns: 1fr;
        padding: 54px;
    }

    .hero-poster {
        display: none;
    }
}

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

    .menu-toggle {
        display: block;
    }

    body.menu-open .mobile-nav {
        display: flex;
    }

    .hero-section {
        min-height: 640px;
    }

    .hero-slide,
    .inner-hero {
        padding: 34px;
    }

    .hero-dots {
        left: 34px;
        bottom: 30px;
    }

    .quick-search-band {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: block;
    }

    .section-link {
        margin-top: 16px;
    }

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

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

    .category-feature-card,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .category-poster-stack {
        width: 280px;
        max-width: 100%;
    }

    .rank-item {
        grid-template-columns: 58px 1fr;
    }

    .rank-poster {
        display: none;
    }

    .rank-number {
        font-size: 24px;
    }

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

@media (max-width: 520px) {
    main,
    .header-inner,
    .mobile-nav,
    .footer-grid {
        width: min(100% - 22px, var(--max));
    }

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

    .search-open {
        display: none;
    }

    .hero-section {
        min-height: 620px;
        border-radius: 26px;
    }

    .hero-slide,
    .inner-hero {
        padding: 24px;
    }

    .hero-content h1,
    .inner-hero h1 {
        font-size: 40px;
    }

    .hero-content p,
    .inner-hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .movie-grid,
    .compact-grid {
        gap: 12px;
    }

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

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

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

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