:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-strong: rgba(15, 23, 42, 0.94);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --cyan: #06b6d4;
    --blue: #2563eb;
    --pink: #e879f9;
    --green: #22c55e;
    --shadow: 0 30px 80px rgba(2, 6, 23, 0.48);
    --radius: 28px;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.15), transparent 32rem),
        radial-gradient(circle at top right, rgba(168, 85, 247, 0.12), transparent 34rem),
        linear-gradient(180deg, #020617 0%, #0b1020 46%, #020617 100%);
    min-height: 100vh;
}

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: rgba(2, 6, 23, 0.72);
    border-bottom: 1px solid var(--line);
}

.nav-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.site-logo::before {
    content: "";
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, var(--cyan), var(--blue)),
        radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 60%);
    box-shadow: 0 0 36px rgba(6, 182, 212, 0.38);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a {
    color: #cbd5e1;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
    color: white;
    background: rgba(6, 182, 212, 0.16);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    border: 0;
    color: white;
    background: rgba(148, 163, 184, 0.14);
    border-radius: 12px;
    padding: 9px 12px;
}

main {
    overflow: hidden;
}

.hero {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 26px;
    position: relative;
}

.hero-stage {
    position: relative;
    min-height: 620px;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #0f172a;
    box-shadow: var(--shadow);
}

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

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.18)),
        var(--hero-image) center / cover no-repeat;
    filter: saturate(1.08);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(34, 211, 238, 0.26), transparent 24rem),
        radial-gradient(circle at 78% 34%, rgba(232, 121, 249, 0.17), transparent 22rem),
        linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.7));
}

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

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

.eyebrow,
.section-head p,
.category-panel p,
.sub-hero p,
.intro-band p {
    color: var(--cyan);
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 13px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 84px);
    line-height: 0.96;
    letter-spacing: -0.08em;
    max-width: 760px;
}

.hero-summary {
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.85;
    max-width: 700px;
    margin: 24px 0 22px;
}

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

.hero-tags span,
.tag-row span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    color: #e0f2fe;
    background: rgba(6, 182, 212, 0.18);
    border: 1px solid rgba(34, 211, 238, 0.18);
    font-size: 13px;
}

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

.btn-primary,
.btn-ghost,
.text-link,
.side-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    min-height: 44px;
    padding: 0 20px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 42px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover,
.btn-ghost:hover,
.text-link:hover,
.side-actions a:hover {
    transform: translateY(-2px);
}

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

.btn-ghost,
.text-link,
.side-actions a {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-poster {
    display: block;
    min-height: 460px;
    border-radius: 34px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.35), rgba(168, 85, 247, 0.18));
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

.hero-poster span,
.poster,
.mini-thumb,
.rank-cover,
.detail-cover,
.player-cover,
.category-tile,
.category-panel,
.sub-hero {
    background-image:
        linear-gradient(160deg, rgba(15, 23, 42, 0.1), rgba(2, 6, 23, 0.82)),
        var(--cover-image);
    background-position: center;
    background-size: cover;
}

.hero-poster span {
    display: block;
    height: 100%;
    min-height: 440px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-controls {
    position: absolute;
    z-index: 8;
    right: 32px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.68);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
}

.hero-controls button {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

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

.hero-dot {
    width: 9px !important;
    height: 9px !important;
    padding: 0;
    background: rgba(148, 163, 184, 0.6) !important;
}

.hero-dot.is-active {
    width: 28px !important;
    border-radius: 999px !important;
    background: var(--cyan) !important;
}

.intro-band,
.search-panel,
.section,
.detail-layout,
.player-section {
    width: min(1180px, calc(100% - 32px));
    margin: 22px auto;
}

.intro-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.14), rgba(15, 23, 42, 0.84));
}

.intro-band h2,
.section-head h2,
.category-panel h2,
.sub-hero h1,
.detail-copy h1,
.detail-article h2,
.detail-side h2 {
    margin: 0;
    letter-spacing: -0.04em;
}

.intro-band h2,
.section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.search-panel {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.78);
}

.search-panel.slim {
    margin-top: 28px;
}

.search-panel label {
    color: #e0f2fe;
    font-weight: 800;
}

.search-panel input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.22);
    outline: 0;
    color: white;
    background: rgba(2, 6, 23, 0.58);
    border-radius: 16px;
    padding: 14px 16px;
}

.search-panel input:focus {
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.section {
    padding: 26px 0;
}

.section-tight {
    padding-top: 12px;
}

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

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid var(--line);
    box-shadow: 0 14px 38px rgba(2, 6, 23, 0.24);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.34);
    box-shadow: 0 24px 58px rgba(2, 6, 23, 0.38);
}

.poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    background-color: #0f172a;
    overflow: hidden;
}

.poster-glow {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0.86)),
        radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.28), transparent 46%);
}

.poster-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #e0f2fe;
    background: rgba(2, 6, 23, 0.68);
    backdrop-filter: blur(10px);
}

.poster-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 14px 34px rgba(6, 182, 212, 0.32);
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 16px;
}

.card-body strong {
    font-size: 17px;
    line-height: 1.35;
}

.card-meta,
.card-desc,
.rank-info em,
.rank-info span,
.category-panel span,
.sub-hero span,
.detail-line,
.detail-article p,
.detail-side dd,
.site-footer p,
.footer-links a,
.footer-bottom {
    color: var(--muted);
}

.card-meta,
.card-desc {
    font-size: 13px;
    line-height: 1.55;
}

.card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row span {
    font-size: 12px;
    padding: 5px 8px;
}

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

.category-tile {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
    background-color: #0f172a;
    box-shadow: 0 16px 36px rgba(2, 6, 23, 0.24);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover,
.category-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.34);
}

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

.category-tile em {
    margin-top: 8px;
    color: #cbd5e1;
    line-height: 1.55;
    font-style: normal;
    font-size: 13px;
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 54px 86px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid var(--line);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    border-color: rgba(34, 211, 238, 0.34);
}

.rank-num {
    color: var(--cyan);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.rank-cover,
.mini-thumb {
    display: block;
    border-radius: 16px;
    aspect-ratio: 3 / 4;
    background-color: #0f172a;
}

.rank-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.rank-info strong {
    font-size: 18px;
}

.rank-info em,
.rank-info span {
    font-style: normal;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sub-hero {
    width: min(1180px, calc(100% - 32px));
    min-height: 330px;
    margin: 34px auto 0;
    border-radius: 34px;
    display: flex;
    align-items: flex-end;
    padding: 52px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.sub-hero::before,
.detail-hero::before,
.category-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 32%, rgba(34, 211, 238, 0.25), transparent 28rem),
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.58));
}

.sub-hero > div {
    position: relative;
    max-width: 760px;
}

.sub-hero h1 {
    font-size: clamp(38px, 6vw, 68px);
}

.sub-hero span {
    display: block;
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.75;
}

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

.category-panel {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    border-radius: 28px;
    border: 1px solid var(--line);
    padding: 28px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    background-color: #0f172a;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-panel > div,
.category-preview {
    position: relative;
    z-index: 2;
}

.category-panel h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.category-panel span {
    display: block;
    line-height: 1.75;
    margin-bottom: 20px;
}

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

.mini-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-card strong {
    display: block;
    font-size: 14px;
    line-height: 1.4;
}

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

.detail-hero {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 560px;
    margin: 34px auto 26px;
    border-radius: 36px;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1fr;
    gap: 34px;
    align-items: end;
    padding: 52px;
    background-image:
        linear-gradient(120deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.48)),
        var(--hero-image);
    background-position: center;
    background-size: cover;
}

.detail-cover,
.detail-copy {
    position: relative;
    z-index: 2;
}

.detail-cover {
    min-height: 460px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #bae6fd;
    margin-bottom: 14px;
    font-size: 14px;
}

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

.detail-line {
    font-size: 18px;
    line-height: 1.8;
    margin: 20px 0;
    max-width: 760px;
}

.player-section {
    padding: 0;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: black;
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow);
}

.player-box video,
.player-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.player-box video {
    object-fit: contain;
    background: black;
}

.player-cover {
    border: 0;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background-color: #0f172a;
    background-image:
        linear-gradient(180deg, rgba(2, 6, 23, 0.24), rgba(2, 6, 23, 0.86)),
        var(--cover-image);
    background-size: cover;
    background-position: center;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.player-cover strong {
    font-size: clamp(22px, 4vw, 46px);
    padding: 0 22px;
    text-align: center;
}

.play-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 20px 58px rgba(6, 182, 212, 0.4);
    font-size: 32px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 24px;
}

.detail-article,
.detail-side {
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.78);
    border-radius: 28px;
    padding: 28px;
}

.detail-article h2,
.detail-side h2 {
    font-size: 28px;
    margin: 0 0 18px;
}

.detail-article p {
    line-height: 1.9;
    font-size: 16px;
    margin: 0 0 20px;
}

.detail-side dl {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px 10px;
    margin: 0;
}

.detail-side dt {
    color: #e0f2fe;
    font-weight: 800;
}

.detail-side dd {
    margin: 0;
    line-height: 1.55;
}

.side-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.side-actions a {
    flex: 1;
}

.related-section {
    padding-top: 8px;
}

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

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

.site-footer strong {
    font-size: 22px;
}

.site-footer p {
    line-height: 1.75;
    margin: 10px 0 0;
}

.site-footer span {
    display: block;
    color: white;
    font-weight: 900;
    margin-bottom: 12px;
}

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

.footer-links a {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 13px;
}

.footer-links a:hover {
    color: white;
    background: rgba(6, 182, 212, 0.16);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 26px;
    border-top: 1px solid var(--line);
    font-size: 13px;
}

[data-card].is-hidden {
    display: none;
}

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

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

    .hero-poster {
        display: none;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 22px;
        background: rgba(2, 6, 23, 0.96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

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

    .site-nav a {
        border-radius: 14px;
    }

    .hero-stage {
        min-height: 560px;
    }

    .hero-slide {
        padding: 34px 26px;
    }

    .hero h1,
    .detail-copy h1 {
        letter-spacing: -0.06em;
    }

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

    .intro-band,
    .section-head,
    .category-panel,
    .detail-hero,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .intro-band,
    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .detail-cover {
        min-height: 380px;
    }

    .category-preview,
    .compact-rank {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .nav-shell,
    .hero,
    .intro-band,
    .search-panel,
    .section,
    .sub-hero,
    .detail-hero,
    .detail-layout,
    .player-section,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 22px, 1180px);
    }

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

    .hero-stage {
        min-height: 520px;
        border-radius: 24px;
    }

    .hero-slide {
        padding: 28px 20px 84px;
    }

    .hero-summary,
    .detail-line {
        font-size: 15px;
        line-height: 1.7;
    }

    .card-body {
        padding: 12px;
    }

    .card-body strong {
        font-size: 15px;
    }

    .category-tile {
        min-height: 150px;
    }

    .rank-item {
        grid-template-columns: 42px 72px 1fr;
        gap: 10px;
    }

    .rank-num {
        font-size: 19px;
    }

    .sub-hero,
    .detail-hero {
        padding: 28px;
        min-height: 320px;
        border-radius: 26px;
    }

    .detail-cover {
        min-height: 320px;
    }

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

@media (max-width: 430px) {
    .movie-grid,
    .movie-grid.large-list,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .side-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-ghost,
    .side-actions a {
        width: 100%;
    }
}
