:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.86);
    --panel-strong: rgba(15, 23, 42, 0.96);
    --line: rgba(148, 163, 184, 0.18);
    --muted: #94a3b8;
    --text: #e5f2ff;
    --white: #ffffff;
    --cyan: #22d3ee;
    --blue: #38bdf8;
    --deep-blue: #2563eb;
    --danger: #fb7185;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 0%, rgba(8, 145, 178, 0.22), transparent 34%),
        radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.24), transparent 32%),
        linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.88);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #00111a;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 28px rgba(34, 211, 238, 0.38);
    font-size: 13px;
    font-weight: 900;
}

.brand-name {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #67e8f9, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-nav-link {
    color: #cbd5e1;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--white);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.82);
}

.header-search input,
.mobile-search input,
.wide-search input,
.filter-input input,
.filter-select select {
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.header-search input {
    width: 180px;
    padding: 8px 8px 8px 14px;
}

.header-search button,
.mobile-search button,
.wide-search button {
    border: 0;
    border-radius: 999px;
    padding: 8px 15px;
    color: #03131d;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.84);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--text);
}

.mobile-panel {
    display: none;
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-nav {
    display: grid;
    gap: 12px;
    padding: 14px 0;
}

.mobile-search {
    display: flex;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 8px;
    background: rgba(15, 23, 42, 0.9);
}

.mobile-search input {
    flex: 1;
    padding: 8px 10px;
}

.hero {
    position: relative;
    height: min(72vh, 640px);
    min-height: 520px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 42%, rgba(2, 6, 23, 0.14) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.16) 42%, rgba(2, 6, 23, 0.68) 100%);
}

.hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: max(24px, calc((100vw - var(--container)) / 2));
    width: min(620px, calc(100% - 48px));
    transform: translateY(-50%);
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-desc,
.page-hero p {
    max-width: 680px;
    margin: 22px 0 0;
    color: #dbeafe;
    font-size: clamp(16px, 2vw, 20px);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-tags span,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 999px;
    color: #a5f3fc;
    background: rgba(8, 145, 178, 0.16);
}

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

.primary-btn,
.ghost-btn,
.text-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 900;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #03131d;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 14px 34px rgba(34, 211, 238, 0.24);
}

.ghost-btn,
.text-btn {
    border: 1px solid rgba(148, 163, 184, 0.34);
    color: var(--text);
    background: rgba(15, 23, 42, 0.52);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-btn:hover,
.movie-card:hover,
.category-tile:hover,
.overview-card:hover {
    transform: translateY(-3px);
}

.hero-nav {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--white);
    background: rgba(15, 23, 42, 0.56);
    backdrop-filter: blur(12px);
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
}

.hero-prev {
    left: 28px;
}

.hero-next {
    right: 28px;
}

.hero-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 28px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.42);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 30px;
    background: var(--cyan);
}

.home-search-section,
.section,
.page-main,
.footer-inner,
.footer-bottom {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.home-search-section {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    margin-top: -42px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.wide-search {
    display: flex;
    gap: 10px;
    min-height: 58px;
    padding: 8px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.58);
}

.wide-search input {
    flex: 1;
    padding: 0 18px;
    font-size: 16px;
}

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

.quick-links a {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(2, 6, 23, 0.42);
}

.section {
    padding: 78px 0 0;
}

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

.section-head h2,
.footer-col h2,
.side-box h2,
.rank-sidebar h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
}

.section-head a {
    color: #67e8f9;
    font-weight: 800;
}

.compact-head h2 {
    font-size: 28px;
}

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

.category-tile {
    position: relative;
    min-height: 188px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--panel);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile img {
    width: 100%;
    height: 100%;
    min-height: 188px;
    object-fit: cover;
    opacity: 0.58;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.88) 100%);
}

.category-tile span,
.category-tile em {
    position: absolute;
    z-index: 2;
    left: 16px;
    right: 16px;
}

.category-tile span {
    bottom: 64px;
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
}

.category-tile em {
    bottom: 18px;
    color: #cbd5e1;
    font-size: 13px;
    font-style: normal;
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.movie-card:hover {
    border-color: rgba(34, 211, 238, 0.36);
    background: rgba(15, 23, 42, 0.94);
}

.movie-card.is-hidden {
    display: none;
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.8);
}

.poster-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.movie-card:hover .poster-link img {
    transform: scale(1.06);
}

.card-year {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    color: #cffafe;
    background: rgba(2, 6, 23, 0.72);
    font-size: 12px;
    font-weight: 900;
}

.rank-num {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #00111a;
    background: linear-gradient(135deg, #fde68a, #fb7185);
    font-size: 14px;
    font-weight: 1000;
}

.card-body {
    padding: 14px;
}

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

.card-body h2 a:hover {
    color: #67e8f9;
}

.card-meta,
.card-desc,
.card-tags {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}

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

.card-tags {
    color: #67e8f9;
}

.split-section {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 34px;
}

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

.rank-list-item {
    display: grid;
    grid-template-columns: 34px 58px 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.72);
}

.rank-list-item:hover {
    border-color: rgba(34, 211, 238, 0.34);
    background: rgba(15, 23, 42, 0.96);
}

.rank-index {
    color: #67e8f9;
    font-weight: 1000;
    text-align: center;
}

.rank-list-item img {
    width: 58px;
    height: 76px;
    border-radius: 10px;
    object-fit: cover;
}

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

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

.rank-info strong {
    color: var(--white);
}

.rank-info em,
.rank-heat {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.rank-heat {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.1);
}

.page-main {
    padding: 44px 0 90px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(8, 145, 178, 0.28), rgba(37, 99, 235, 0.08)),
        rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
}

.narrow-hero,
.category-hero,
.rank-hero,
.search-hero {
    min-height: 280px;
}

.small-actions {
    margin-top: 24px;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr 190px 190px;
    gap: 14px;
    align-items: end;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.78);
}

.filter-input,
.filter-select {
    display: grid;
    gap: 8px;
    color: #cbd5e1;
    font-weight: 800;
}

.filter-input input,
.filter-select select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.52);
}

.filter-select select {
    appearance: none;
}

.filter-empty {
    display: none;
    grid-column: 1 / -1;
    margin: 4px 0 0;
    color: #fecdd3;
}

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

.in-page-section {
    padding-top: 34px;
}

.overview-grid {
    display: grid;
    gap: 22px;
    margin-top: 28px;
}

.overview-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.76);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.overview-card:hover {
    border-color: rgba(34, 211, 238, 0.32);
}

.overview-cover {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 230px;
}

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

.overview-body {
    padding: 28px;
}

.overview-body h2 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 28px;
}

.overview-body p,
.overview-body li {
    color: #cbd5e1;
}

.overview-body ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    padding: 0;
    margin: 18px 0 20px;
    list-style: none;
}

.overview-body li a:hover {
    color: #67e8f9;
}

.rank-page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 26px;
    margin-top: 34px;
}

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

.rank-sidebar {
    min-width: 0;
}

.sticky-rank {
    position: sticky;
    top: 92px;
    margin-top: 18px;
}

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

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

.breadcrumb a:hover {
    color: #67e8f9;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}

.detail-primary,
.detail-side {
    min-width: 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: #000;
    box-shadow: var(--shadow);
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-veil {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: var(--white);
    background:
        radial-gradient(circle at 50% 45%, rgba(34, 211, 238, 0.22), transparent 32%),
        rgba(2, 6, 23, 0.64);
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-symbol {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #00111a;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 46px rgba(34, 211, 238, 0.32);
    font-size: 26px;
    font-weight: 1000;
}

.player-veil strong {
    max-width: min(86%, 560px);
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.2;
}

.player-veil em {
    color: #cffafe;
    font-style: normal;
    font-weight: 800;
}

.detail-card,
.side-box,
.side-poster {
    margin-top: 22px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.76);
}

.detail-card h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
}

.detail-card h2 {
    margin: 28px 0 10px;
    color: var(--white);
    font-size: 24px;
}

.detail-card p {
    margin: 0;
    color: #dbeafe;
    font-size: 16px;
}

.detail-meta,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.detail-meta span {
    padding: 6px 12px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(2, 6, 23, 0.36);
}

.side-poster {
    margin-top: 0;
}

.side-poster img {
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.full-btn {
    width: 100%;
    margin-top: 18px;
}

.compact-rank-list .rank-list-item {
    grid-template-columns: 28px 48px 1fr;
}

.compact-rank-list .rank-heat {
    display: none;
}

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

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

.footer-inner {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 32px;
    padding: 54px 0;
}

.footer-brand p,
.footer-col li,
.footer-bottom {
    color: var(--muted);
}

.footer-brand p {
    max-width: 560px;
    margin: 16px 0 0;
}

.footer-col ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 16px 0 0;
    list-style: none;
}

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

.footer-bottom {
    padding: 18px 0 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    font-size: 14px;
}

@media (max-width: 1120px) {
    .header-search {
        display: none;
    }

    .category-grid,
    .movie-grid,
    .dense-grid,
    .rank-card-grid,
    .related-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .detail-side {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 20px;
    }

    .side-box {
        margin-top: 0;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        left: 20px;
        width: calc(100% - 40px);
    }

    .hero-nav {
        display: none;
    }

    .home-search-section,
    .filter-panel,
    .footer-inner,
    .overview-card,
    .detail-side {
        grid-template-columns: 1fr;
    }

    .wide-search {
        border-radius: 20px;
    }

    .quick-links {
        justify-content: center;
    }

    .category-grid,
    .movie-grid,
    .mini-card-grid,
    .dense-grid,
    .rank-card-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-hero {
        padding: 30px;
    }

    .rank-list-item {
        grid-template-columns: 28px 52px 1fr;
    }

    .rank-heat {
        display: none;
    }
}

@media (max-width: 520px) {
    .header-inner {
        height: 64px;
        width: min(100% - 24px, var(--container));
    }

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

    .hero h1,
    .page-hero h1 {
        font-size: 38px;
    }

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

    .wide-search button,
    .primary-btn,
    .ghost-btn {
        width: 100%;
    }

    .category-grid,
    .movie-grid,
    .mini-card-grid,
    .dense-grid,
    .rank-card-grid,
    .related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .card-body {
        padding: 11px;
    }

    .card-body h2 {
        font-size: 14px;
    }

    .card-desc,
    .card-tags {
        display: none;
    }

    .page-main {
        padding-top: 28px;
    }

    .detail-card,
    .side-box,
    .side-poster {
        padding: 18px;
    }
}
