:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: rgba(15, 23, 42, 0.72);
    --panel: rgba(15, 23, 42, 0.82);
    --panel-strong: rgba(15, 23, 42, 0.96);
    --line: rgba(34, 211, 238, 0.22);
    --line-strong: rgba(34, 211, 238, 0.42);
    --text: #f8fafc;
    --muted: #94a3b8;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --accent: #06b6d4;
    --shadow: 0 24px 80px rgba(8, 47, 73, 0.35);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 32rem),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.16), transparent 34rem),
        linear-gradient(135deg, #020617 0%, #0f172a 48%, #020617 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
}

img {
    max-width: 100%;
}

main {
    overflow: hidden;
}

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

.header-shell {
    width: min(1440px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(220px, 320px);
    align-items: center;
    gap: 22px;
}

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

.brand {
    font-size: 1.1rem;
}

.brand-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 32px rgba(34, 211, 238, 0.45);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-menu a {
    padding: 10px 12px;
    border-radius: 999px;
    color: #cbd5e1;
    font-size: 0.94rem;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff;
    background: rgba(34, 211, 238, 0.12);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.8);
}

.header-search {
    position: relative;
}

.header-search input,
.wide-search input,
.filter-bar input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.78);
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
    height: 42px;
    padding: 0 18px;
}

.header-search input:focus,
.wide-search input:focus,
.filter-bar input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
    background: rgba(15, 23, 42, 0.95);
}

.search-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(430px, calc(100vw - 32px));
    max-height: 460px;
    overflow: auto;
    display: none;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(2, 6, 23, 0.96);
    box-shadow: var(--shadow);
    padding: 10px;
}

.search-panel.show {
    display: grid;
    gap: 8px;
}

.search-result {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 14px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.7);
}

.search-result img {
    width: 54px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
}

.search-result strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.96rem;
}

.search-result span {
    color: var(--muted);
    font-size: 0.82rem;
}

.hero-carousel {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(34, 211, 238, 0.24), transparent 28rem),
        radial-gradient(circle at 84% 22%, rgba(59, 130, 246, 0.22), transparent 30rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.14), rgba(2, 6, 23, 1));
}

.hero-track {
    position: relative;
    z-index: 2;
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 700px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: center;
    gap: 56px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(24px) scale(0.985);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: -90px -120px;
    z-index: -1;
    background-image:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.62)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: blur(24px) saturate(1.25);
    opacity: 0.52;
}

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

.hero-copy {
    max-width: 760px;
    padding-top: 48px;
}

.eyebrow,
.section-heading span,
.sub-hero span {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
    font-size: 0.86rem;
    font-weight: 800;
}

.hero-copy h1 {
    max-width: 780px;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(2.45rem, 6vw, 5.75rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-copy h1::first-letter {
    color: var(--cyan);
}

.hero-copy h2 {
    margin: 0 0 18px;
    color: #e0f2fe;
    font-size: clamp(1.5rem, 3vw, 2.45rem);
    font-weight: 900;
}

.hero-copy p {
    max-width: 700px;
    margin: 0 0 24px;
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.9;
}

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

.hero-tags span,
.detail-tags span,
.movie-tags span {
    border: 1px solid rgba(34, 211, 238, 0.26);
    border-radius: 999px;
    color: #bae6fd;
    background: rgba(14, 165, 233, 0.1);
    font-size: 0.78rem;
}

.hero-tags span,
.detail-tags span {
    padding: 7px 12px;
}

.movie-tags span {
    padding: 5px 9px;
}

.hero-actions,
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.primary-btn,
.ghost-btn,
.section-link,
.filter-bar a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 46px rgba(34, 211, 238, 0.28);
}

.ghost-btn,
.section-link,
.filter-bar a {
    border: 1px solid var(--line-strong);
    color: #e0f2fe;
    background: rgba(15, 23, 42, 0.66);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-link:hover,
.filter-bar a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 46px rgba(34, 211, 238, 0.22);
}

.hero-image-panel {
    justify-self: end;
    width: min(430px, 100%);
    position: relative;
}

.hero-image-panel::before {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.3), rgba(59, 130, 246, 0.08), rgba(34, 211, 238, 0.22));
    filter: blur(18px);
}

.hero-image-panel img {
    position: relative;
    aspect-ratio: 3 / 4;
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 30px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 52px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(-50%);
}

.hero-prev,
.hero-next,
.back-top {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(12px);
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: rgba(148, 163, 184, 0.42);
    transition: width 0.25s ease, background 0.25s ease;
}

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

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(2, 6, 23, 0.96));
}

.content-section,
.quick-search-section {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 30px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading.centered span {
    margin-inline: auto;
}

.section-heading h2,
.sub-hero h1,
.detail-info h1 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.55rem);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.section-heading p,
.sub-hero p,
.category-overview-card p,
.category-tile p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.compact-heading h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.wide-search {
    max-width: 820px;
    margin: 0 auto;
}

.wide-search input,
.filter-bar input {
    min-height: 56px;
    padding: 0 22px;
    font-size: 1rem;
}

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.16);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.76), rgba(2, 6, 23, 0.92));
    box-shadow: 0 18px 48px rgba(2, 6, 23, 0.32);
    transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong);
    box-shadow: 0 28px 60px rgba(8, 47, 73, 0.38);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.86);
}

.poster-link img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.movie-card:hover .poster-link img {
    transform: scale(1.055);
    filter: saturate(1.18) contrast(1.04);
}

.poster-shine {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.96), transparent);
}

.play-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-size: 0.78rem;
    font-weight: 900;
}

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

.movie-card h3 {
    margin: 12px 0 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.35;
}

.movie-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.compact-card {
    display: grid;
    grid-template-columns: 96px 1fr;
}

.compact-card .poster-link img {
    height: 100%;
    min-height: 144px;
}

.compact-card .poster-shine,
.compact-card .play-badge {
    display: none;
}

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

.category-tile,
.category-overview-card a {
    position: relative;
    display: block;
    min-height: 164px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(59, 130, 246, 0.08)),
        rgba(15, 23, 42, 0.68);
    transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.category-tile::after,
.category-overview-card a::after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -36px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.12);
}

.category-tile:hover,
.category-overview-card a:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow);
}

.category-tile span,
.category-overview-card span {
    display: block;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 900;
}

.split-section,
.ranking-columns {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

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

.wide-ranking {
    grid-column: 1 / -1;
}

.ranking-card,
.latest-card,
.story-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
    padding: 26px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 48px 68px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(34, 211, 238, 0.12);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.44);
}

.rank-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 950;
}

.rank-cover img {
    width: 68px;
    height: 92px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-item h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 900;
}

.rank-item p {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rank-meta {
    color: #67e8f9;
    font-size: 0.78rem;
}

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

.sub-hero {
    position: relative;
    width: min(1440px, calc(100% - 32px));
    margin: 34px auto 0;
    overflow: hidden;
    padding: 86px 34px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.22), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(2, 6, 23, 0.86));
    box-shadow: var(--shadow);
}

.sub-hero div {
    max-width: 860px;
}

.filter-bar-section {
    padding-bottom: 14px;
}

.filter-bar {
    margin-top: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.62);
}

.filter-bar input {
    flex: 1 1 320px;
}

.detail-hero {
    position: relative;
    padding: 44px 0 70px;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.98)),
        var(--detail-image);
    background-size: cover;
    background-position: center;
    filter: saturate(1.1);
}

.detail-layout {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    align-items: center;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--line-strong);
    border-radius: 28px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #cbd5e1;
    font-size: 0.92rem;
}

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

.detail-one-line {
    max-width: 860px;
    color: #dbeafe;
    font-size: 1.18rem;
    line-height: 1.9;
}

.player-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0 10px;
}

.player-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 30px;
    background: #000000;
    box-shadow: var(--shadow);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.76));
    z-index: 3;
}

.play-overlay[hidden],
.player-wrap.is-playing .play-overlay {
    display: none;
}

.play-circle {
    display: inline-flex;
    width: 82px;
    height: 82px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 50px rgba(34, 211, 238, 0.48);
    font-size: 2rem;
}

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

.story-card h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 900;
}

.story-card p {
    color: #cbd5e1;
    line-height: 2;
}

.site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), #020617);
}

.footer-glow {
    position: absolute;
    inset: auto 8% -150px;
    height: 260px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.12);
    filter: blur(70px);
}

.footer-grid {
    position: relative;
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
    padding: 54px 0 34px;
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
}

.footer-grid p,
.footer-grid a {
    color: #94a3b8;
    line-height: 1.9;
}

.footer-grid a:hover {
    color: var(--cyan);
}

.footer-bottom {
    position: relative;
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(34, 211, 238, 0.14);
    color: #64748b;
    font-size: 0.92rem;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.is-hidden {
    display: none !important;
}

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

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

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

@media (max-width: 900px) {
    .header-shell {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        grid-column: 1 / -1;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(2, 6, 23, 0.95);
    }

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

    .header-search {
        grid-column: 1 / -1;
        order: 3;
        margin-bottom: 14px;
    }

    .hero-carousel,
    .hero-track {
        min-height: 860px;
    }

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

    .hero-image-panel {
        justify-self: start;
        width: min(320px, 84vw);
        order: -1;
        margin-top: 70px;
    }

    .split-section,
    .ranking-columns,
    .detail-content,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        max-width: 260px;
    }
}

@media (max-width: 640px) {
    .content-section,
    .quick-search-section {
        padding: 44px 0;
    }

    .hero-copy h1 {
        font-size: 2.35rem;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .hero-controls {
        bottom: 24px;
    }

    .movie-grid,
    .compact-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .compact-card {
        grid-template-columns: 92px 1fr;
    }

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

    .rank-cover img {
        width: 58px;
        height: 82px;
    }

    .sub-hero {
        padding: 54px 22px;
        border-radius: 24px;
    }

    .detail-layout {
        gap: 22px;
    }
}
