:root {
    --bg: #f8fafc;
    --bg-soft: #eef2f7;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --card: #ffffff;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --cyan: #06b6d4;
    --cyan-2: #0891b2;
    --blue: #2563eb;
    --red: #dc2626;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
}

.nav-wrap {
    max-width: 1280px;
    height: 64px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand span:last-child {
    background: linear-gradient(90deg, #22d3ee, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    box-shadow: 0 10px 24px rgba(6, 182, 212, 0.35);
    font-size: 15px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 15px;
    font-weight: 600;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: #22d3ee;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 14px 24px 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    background: #1e293b;
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

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

.page-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section {
    padding-top: 54px;
    padding-bottom: 54px;
}

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

.section-heading > div {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    align-items: center;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.section-heading p {
    grid-column: 2;
    margin: 4px 0 0;
    color: var(--muted);
}

.section-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--cyan-2);
    font-weight: 900;
}

.hero {
    position: relative;
    min-height: 660px;
    color: #ffffff;
    overflow: hidden;
    background: #020617;
}

.hero-track {
    position: relative;
    min-height: 660px;
}

.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-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.15) contrast(1.05);
    transform: scale(1.04);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.32), transparent 32%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.7) 48%, rgba(2, 6, 23, 0.28) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.14) 38%, rgba(2, 6, 23, 0.62) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    min-height: 660px;
    margin: 0 auto;
    padding: 88px 24px 150px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 48px;
    align-items: center;
}

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

.hero-kicker,
.meta-row,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-kicker span,
.meta-row span,
.detail-meta span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    font-size: 13px;
    font-weight: 700;
}

.hero h1 {
    margin: 20px 0 18px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(226, 232, 240, 0.92);
    font-size: 19px;
}

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

.tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    color: #075985;
    background: #cffafe;
    font-size: 13px;
    font-weight: 800;
}

.hero .tag,
.detail-hero .tag {
    color: #ffffff;
    background: rgba(6, 182, 212, 0.28);
    border: 1px solid rgba(103, 232, 249, 0.42);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
    color: #ffffff;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.28);
}

.btn.ghost {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn.ghost.dark {
    color: #0f172a;
    border-color: #cbd5e1;
    background: #ffffff;
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(8px);
    font-weight: 800;
}

.hero-panel {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 26px;
    width: min(1232px, calc(100% - 48px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 1.1fr 1.6fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(16px);
}

.hero-search strong {
    display: block;
    margin-bottom: 8px;
}

.search-box {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.search-box input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 10px 12px;
    color: #0f172a;
    background: transparent;
}

.search-box button {
    border: 0;
    border-radius: 12px;
    padding: 10px 14px;
    color: #ffffff;
    background: #0f172a;
    cursor: pointer;
    font-weight: 700;
}

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

.hero-categories a {
    padding: 8px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.1);
    font-size: 13px;
    font-weight: 700;
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.hero-dots button.is-active {
    width: 28px;
    background: #22d3ee;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 22px;
}

.feature-card {
    position: relative;
    min-height: 320px;
    display: block;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--shadow);
    background: #0f172a;
}

.feature-card:first-child {
    min-height: 420px;
    grid-row: span 2;
}

.feature-media,
.feature-media img,
.feature-shade {
    position: absolute;
    inset: 0;
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.feature-card:hover .feature-media img {
    transform: scale(1.08);
}

.feature-shade {
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.18));
}

.feature-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px;
    color: #ffffff;
}

.feature-content h3 {
    margin: 12px 0 8px;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
}

.feature-content p {
    margin: 0 0 10px;
    color: rgba(226, 232, 240, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-genre {
    color: rgba(203, 213, 225, 0.86);
    font-size: 13px;
}

.rank-badge {
    color: #ffffff;
    background: #dc2626;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
}

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

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

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

.poster-type,
.poster-rank {
    position: absolute;
    top: 12px;
    border-radius: 999px;
    padding: 5px 9px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
}

.poster-type {
    left: 12px;
}

.poster-rank {
    right: 12px;
    background: #dc2626;
}

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

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.movie-card:hover h3 {
    color: var(--cyan-2);
}

.movie-card p {
    min-height: 42px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.latest-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 36px;
    margin: 34px auto;
    color: #ffffff;
    max-width: 1320px;
}

.latest-section .section-heading p {
    color: rgba(226, 232, 240, 0.76);
}

.latest-section .movie-card {
    background: rgba(255, 255, 255, 0.96);
}

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

.category-card,
.overview-card,
.content-card {
    display: block;
    padding: 20px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.category-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.14);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 14px;
}

.category-thumbs img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
}

.category-card h3,
.overview-card h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.category-card p,
.overview-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 58px 56px minmax(0, 1fr) auto 64px;
    gap: 14px;
    align-items: center;
    padding: 12px 16px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
    transition: transform 0.2s ease;
}

.rank-row:hover {
    transform: translateX(4px);
}

.rank-row img {
    width: 56px;
    height: 74px;
    border-radius: 10px;
    object-fit: cover;
}

.rank-num {
    color: #dc2626;
    font-size: 22px;
    font-weight: 900;
}

.rank-title {
    overflow: hidden;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-extra {
    color: var(--muted);
    font-size: 13px;
}

.rank-score {
    justify-self: end;
    color: #ffffff;
    background: linear-gradient(135deg, #dc2626, #f97316);
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 900;
}

.center-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.inner-page {
    padding-top: 34px;
}

.page-hero,
.detail-hero {
    overflow: hidden;
    border-radius: 30px;
    padding: clamp(28px, 5vw, 58px);
    background:
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.3), transparent 36%),
        linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.small-hero {
    min-height: auto;
}

.page-hero h1 {
    margin: 12px 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(226, 232, 240, 0.9);
    font-size: 18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 13px;
    color: #67e8f9;
    background: rgba(6, 182, 212, 0.14);
    font-size: 13px;
    font-weight: 900;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 38px 0 60px;
}

.overview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.overview-links a {
    border-radius: 999px;
    padding: 7px 10px;
    background: #ecfeff;
    color: #0e7490;
    font-size: 13px;
    font-weight: 800;
}

.text-link {
    color: var(--cyan-2);
    font-weight: 900;
}

.filter-bar {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

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

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-group button {
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 8px 12px;
    color: #334155;
    background: #ffffff;
    cursor: pointer;
    font-weight: 800;
}

.filter-group button.is-active {
    color: #ffffff;
    border-color: var(--cyan-2);
    background: var(--cyan-2);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0;
    color: #64748b;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--cyan-2);
    font-weight: 800;
}

.detail-hero {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.detail-cover {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.detail-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-info h1 {
    margin: 16px 0;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.lead {
    max-width: 760px;
    margin: 0 0 18px;
    color: rgba(226, 232, 240, 0.9);
    font-size: 18px;
}

.player-section {
    padding: 34px 0;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.3);
}

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

.player-layer {
    position: absolute;
    inset: 0;
    border: 0;
    display: grid;
    place-items: center;
    gap: 16px;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.28));
    cursor: pointer;
    text-align: center;
}

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

.play-circle {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    box-shadow: 0 18px 38px rgba(6, 182, 212, 0.28);
    font-size: 30px;
    padding-left: 4px;
}

.player-layer strong {
    display: block;
    max-width: 80%;
    font-size: 24px;
}

.detail-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.content-card h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.content-card p {
    margin: 0 0 14px;
    color: #334155;
}

.detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 0 64px;
}

.detail-nav a {
    padding: 16px 18px;
    border-radius: 18px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-weight: 800;
}

.site-footer {
    margin-top: 40px;
    color: #cbd5e1;
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 24px 28px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr;
    gap: 28px;
}

.footer-brand p {
    max-width: 520px;
    color: #94a3b8;
}

.site-footer h3 {
    margin: 0 0 12px;
    color: #ffffff;
}

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

.footer-links a {
    color: #cbd5e1;
}

.footer-links a:hover {
    color: #22d3ee;
}

.copyright {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
}

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

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

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

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

    .feature-card:first-child {
        grid-column: span 2;
    }
}

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

    .nav-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 70px;
    }

    .hero-poster {
        display: none;
    }

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

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

    .detail-hero,
    .detail-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .detail-cover {
        max-width: 320px;
    }

    .rank-row {
        grid-template-columns: 44px 48px minmax(0, 1fr) 54px;
    }

    .rank-extra {
        display: none;
    }
}

@media (max-width: 640px) {
    .nav-wrap,
    .page-shell {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .hero-content {
        min-height: 620px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 210px;
    }

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

    .hero p {
        font-size: 16px;
    }

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

    .category-grid,
    .overview-grid,
    .feature-grid,
    .detail-nav {
        grid-template-columns: 1fr;
    }

    .feature-card:first-child {
        grid-column: auto;
    }

    .section {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .page-hero,
    .detail-hero {
        border-radius: 22px;
    }

    .player-layer strong {
        font-size: 18px;
    }

    .rank-row {
        padding: 10px;
        grid-template-columns: 36px 42px minmax(0, 1fr) 48px;
        gap: 10px;
    }

    .rank-row img {
        width: 42px;
        height: 58px;
    }
}
