*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --blue-950: #172554;
    --blue-900: #1e3a8a;
    --blue-800: #1e40af;
    --blue-700: #1d4ed8;
    --blue-600: #2563eb;
    --blue-100: #dbeafe;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--slate-800);
    background: #f8fafc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    color: var(--slate-950);
    font-size: 20px;
    font-weight: 800;
}

.brand-subtitle {
    color: var(--slate-500);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: var(--slate-700);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 650;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue-700);
    background: var(--blue-100);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    color: var(--slate-800);
    background: var(--slate-100);
    border: 0;
    border-radius: 12px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    padding: 10px 16px 18px;
    border-top: 1px solid var(--slate-200);
}

.mobile-nav.open {
    display: grid;
    gap: 8px;
}

.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-800) 56%, var(--blue-600));
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(96, 165, 250, 0.46), transparent 32%),
        radial-gradient(circle at 78% 18%, rgba(14, 165, 233, 0.32), transparent 26%),
        linear-gradient(120deg, rgba(15, 23, 42, 0.28), rgba(30, 64, 175, 0.1));
}

.hero-inner {
    position: relative;
    min-height: 650px;
    display: grid;
    align-items: center;
    padding: 56px 0 96px;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 56px;
    align-items: center;
}

.hero-slide.active {
    display: grid;
    animation: fadeUp 0.45s ease both;
}

.hero-copy {
    max-width: 680px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bfdbfe;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.hero p {
    max-width: 620px;
    color: #dbeafe;
    font-size: 20px;
}

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

.tag {
    display: inline-flex;
    color: var(--blue-700);
    background: var(--blue-100);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags .tag {
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-light {
    color: var(--blue-700);
    background: var(--white);
    box-shadow: 0 14px 32px rgba(255, 255, 255, 0.2);
}

.button-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
}

.button-primary {
    color: var(--white);
    background: var(--blue-600);
}

.button-soft {
    color: var(--blue-700);
    background: var(--blue-100);
}

.hero-poster {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 34px 80px rgba(2, 6, 23, 0.42);
    transform: rotate(1.2deg);
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, 0.72));
}

.hero-poster img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-play {
    position: absolute;
    right: 26px;
    bottom: 26px;
    z-index: 2;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    color: var(--blue-700);
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.hero-dots {
    position: absolute;
    left: 0;
    bottom: 42px;
    display: flex;
    gap: 10px;
}

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

.hero-dot.active {
    width: 34px;
    background: var(--white);
}

.hero-search {
    position: absolute;
    right: 0;
    bottom: 28px;
    width: min(520px, 100%);
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(14px);
}

.hero-search input,
.filter-search input {
    width: 100%;
    color: var(--slate-900);
    background: var(--white);
    border: 0;
    outline: 0;
}

.hero-search input {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
}

.hero-search button {
    flex: 0 0 auto;
    color: var(--white);
    background: var(--blue-600);
    border: 0;
    border-radius: 14px;
    padding: 0 22px;
    font-weight: 800;
    cursor: pointer;
}

.stats-strip {
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.stats-grid div {
    padding: 28px 18px;
    text-align: center;
}

.stats-grid strong {
    display: block;
    color: var(--blue-700);
    font-size: 30px;
    line-height: 1;
}

.stats-grid span {
    color: var(--slate-500);
    font-size: 14px;
}

.section {
    padding: 78px 0;
}

.section-muted {
    background: linear-gradient(180deg, #f8fafc, #eef6ff);
}

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

.compact-head {
    margin-bottom: 22px;
}

.section-head h2,
.hot-panel h2,
.content-card h2,
.side-card h2,
.category-overview-card h2 {
    margin: 0;
    color: var(--slate-950);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-kicker {
    color: var(--blue-700);
    margin: 0 0 10px;
    font-size: 13px;
}

.text-link {
    color: var(--blue-700);
    font-weight: 800;
}

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

.category-card,
.category-overview-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.category-card {
    min-height: 240px;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.movie-card:hover,
.ranking-row:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: var(--blue-600);
    border-radius: 16px;
}

.category-card h2 {
    margin: 20px 0 8px;
    color: var(--slate-950);
    font-size: 24px;
}

.category-card p {
    color: var(--slate-600);
    font-size: 14px;
}

.category-samples {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    color: var(--blue-700);
    font-size: 13px;
    font-weight: 700;
}

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

.movie-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

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

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
}

.movie-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.movie-card:hover .movie-cover img {
    transform: scale(1.08);
}

.cover-category,
.rank-badge {
    position: absolute;
    top: 12px;
    z-index: 2;
    color: var(--white);
    background: rgba(37, 99, 235, 0.92);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
}

.cover-category {
    right: 12px;
}

.rank-badge {
    left: 12px;
    background: rgba(15, 23, 42, 0.82);
}

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.movie-card h2 {
    margin: 0;
    color: var(--slate-950);
    font-size: 20px;
    line-height: 1.25;
}

.movie-card h2 a:hover,
.ranking-content h2 a:hover,
.side-links a:hover {
    color: var(--blue-700);
}

.movie-meta {
    margin: 8px 0 0;
    color: var(--slate-500);
    font-size: 13px;
}

.movie-line {
    flex: 1;
    margin: 12px 0 14px;
    color: var(--slate-600);
    font-size: 14px;
}

.card-tags {
    margin-bottom: 12px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 36px;
    align-items: start;
}

.hot-panel,
.side-card,
.content-card,
.filter-panel,
.player-card {
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.hot-panel {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.hot-panel-head {
    margin-bottom: 16px;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 46px 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-ranking .ranking-row {
    grid-template-columns: 34px 58px minmax(0, 1fr);
}

.compact-ranking .ranking-action,
.compact-ranking .ranking-content p {
    display: none;
}

.ranking-num {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
    border-radius: 12px;
    font-weight: 900;
}

.ranking-thumb {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 1 / 1.18;
}

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

.ranking-content h2 {
    margin: 0;
    color: var(--slate-950);
    font-size: 18px;
}

.ranking-content p {
    margin: 6px 0;
    color: var(--slate-600);
    font-size: 14px;
}

.ranking-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--slate-500);
    font-size: 13px;
}

.ranking-action {
    color: var(--blue-700);
    background: var(--blue-100);
    border-radius: 12px;
    padding: 8px 14px;
    font-weight: 800;
}

.page-hero,
.rank-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.small-hero,
.category-hero {
    padding: 76px 0;
}

.page-hero h1,
.rank-hero h1,
.detail-hero h1 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: clamp(40px, 6vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.page-hero p,
.rank-hero p {
    max-width: 780px;
    color: #dbeafe;
    font-size: 18px;
}

.overview-stack {
    display: grid;
    gap: 26px;
}

.category-overview-card {
    padding: 28px;
}

.category-overview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

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

.filter-panel {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding: 14px;
}

.filter-search {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 16px;
    background: var(--slate-100);
    border-radius: 16px;
}

.filter-search span {
    color: var(--slate-500);
    font-size: 22px;
}

.filter-actions {
    display: flex;
    gap: 12px;
}

.filter-select {
    min-height: 48px;
    color: var(--slate-800);
    background: var(--slate-100);
    border: 0;
    outline: 0;
    border-radius: 16px;
    padding: 0 14px;
    font-weight: 700;
}

.empty-state {
    display: none;
    color: var(--slate-600);
    text-align: center;
    padding: 34px;
}

.empty-state.show {
    display: block;
}

.rank-hero {
    padding: 72px 0;
}

.rank-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 54px;
    align-items: center;
}

.rank-hero-poster {
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.38);
    aspect-ratio: 4 / 5;
}

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

.full-ranking .ranking-row {
    grid-template-columns: 54px 86px minmax(0, 1fr) auto;
}

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

.detail-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.24;
    filter: blur(2px);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(30, 64, 175, 0.72));
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding: 72px 0;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    aspect-ratio: 4 / 5;
}

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

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

.detail-line {
    max-width: 820px;
    color: #dbeafe;
    font-size: 20px;
}

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

.detail-meta-grid span {
    display: grid;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
}

.detail-meta-grid strong {
    color: #bfdbfe;
    font-size: 12px;
}

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

.detail-main {
    display: grid;
    gap: 24px;
}

.player-card {
    position: relative;
    overflow: hidden;
    background: var(--slate-950);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    background: var(--slate-950);
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    color: var(--white);
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.78));
    border: 0;
    cursor: pointer;
}

.player-cover.is-hidden {
    display: none;
}

.player-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    color: var(--blue-700);
    background: var(--white);
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.35);
}

.content-card,
.side-card {
    padding: 26px;
}

.content-card h2,
.side-card h2 {
    margin-bottom: 16px;
    font-size: 28px;
}

.content-card p {
    color: var(--slate-700);
    font-size: 17px;
}

.detail-side {
    position: sticky;
    top: 98px;
    display: grid;
    gap: 20px;
}

.side-card dl {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px 16px;
    margin: 0;
}

.side-card dt {
    color: var(--slate-500);
    font-weight: 700;
}

.side-card dd {
    margin: 0;
    color: var(--slate-800);
}

.side-links {
    display: grid;
    gap: 10px;
}

.side-links a {
    color: var(--slate-700);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--slate-200);
    font-weight: 700;
}

.detail-pager {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.site-footer {
    color: #cbd5e1;
    background: var(--slate-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 0.8fr 0.8fr;
    gap: 34px;
    padding: 54px 0;
}

.footer-brand {
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
}

.site-footer h2 {
    color: var(--white);
    margin: 0 0 14px;
    font-size: 16px;
}

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

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 18px 16px;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.accent-green .category-icon,
.accent-green .button-primary {
    background: #16a34a;
}

.accent-purple .category-icon,
.accent-purple .button-primary {
    background: #7c3aed;
}

.accent-rose .category-icon,
.accent-rose .button-primary {
    background: #e11d48;
}

.accent-orange .category-icon,
.accent-orange .button-primary {
    background: #ea580c;
}

.accent-cyan .category-icon,
.accent-cyan .button-primary {
    background: #0891b2;
}

.accent-red .category-icon,
.accent-red .button-primary {
    background: #dc2626;
}

.accent-pink .category-icon,
.accent-pink .button-primary {
    background: #db2777;
}

.accent-amber .category-icon,
.accent-amber .button-primary {
    background: #d97706;
}

.accent-slate .category-icon,
.accent-slate .button-primary {
    background: #475569;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1120px) {
    .category-grid,
    .movie-grid,
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .hot-panel,
    .detail-side {
        position: static;
    }
}

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

    .menu-button {
        display: grid;
        place-items: center;
    }

    .hero,
    .hero-inner {
        min-height: auto;
    }

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

    .hero-slide,
    .detail-hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-poster {
        min-height: 360px;
    }

    .hero-poster img {
        min-height: 360px;
    }

    .hero-dots {
        bottom: 106px;
    }

    .hero-search {
        left: 0;
        right: auto;
        bottom: 28px;
    }

    .stats-grid,
    .detail-meta-grid,
    .category-grid,
    .movie-grid,
    .catalog-grid,
    .overview-samples {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-panel,
    .category-overview-head,
    .section-head {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand-subtitle {
        display: none;
    }

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

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

    .stats-grid,
    .category-grid,
    .movie-grid,
    .movie-grid.two-col,
    .catalog-grid,
    .overview-samples,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .ranking-row,
    .full-ranking .ranking-row,
    .compact-ranking .ranking-row {
        grid-template-columns: 42px 64px minmax(0, 1fr);
    }

    .ranking-action {
        display: none;
    }

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