:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: #1e293b;
    --bg-card-soft: #273449;
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-bright: #cbd5e1;
    --sky: #38bdf8;
    --sky-deep: #0284c7;
    --blue: #3b82f6;
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 0%, rgba(14, 165, 233, 0.18), transparent 28rem),
        linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.nav-open {
    overflow: hidden;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

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

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--sky), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sky);
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.38);
    border-radius: 14px;
    box-shadow: 0 0 28px rgba(56, 189, 248, 0.28);
}

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

.nav-link {
    position: relative;
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 650;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--sky);
    transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(51, 65, 85, 0.7);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #e2e8f0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

.mobile-link {
    display: block;
    padding: 12px 14px;
    margin-top: 6px;
    border-radius: 14px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.5);
}

.mobile-link.active,
.mobile-link:hover {
    color: var(--sky);
    background: rgba(14, 165, 233, 0.12);
}

.hero {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    background: #020617;
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.68) 42%, rgba(2, 6, 23, 0.08) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.15) 52%, rgba(2, 6, 23, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    height: 72vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 118px;
    max-width: 1180px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 14px;
    color: var(--sky);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    text-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

.hero-content p {
    max-width: 720px;
    margin: 22px 0 0;
    color: #dbeafe;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.8;
}

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

.hero-tags {
    margin-top: 22px;
}

.hero-tags span,
.detail-tags span,
.card-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #bae6fd;
    background: rgba(14, 165, 233, 0.14);
    border: 1px solid rgba(56, 189, 248, 0.28);
    font-size: 12px;
    font-weight: 700;
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(90deg, var(--sky-deep), var(--blue));
    box-shadow: 0 16px 30px rgba(14, 165, 233, 0.32);
}

.ghost-btn {
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(226, 232, 240, 0.2);
}

.primary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(14, 165, 233, 0.28);
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 34px;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.68);
    border: 1px solid rgba(148, 163, 184, 0.22);
    backdrop-filter: blur(12px);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

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

.hero-dot {
    width: 34px;
    height: 8px;
    padding: 0;
    border-radius: 999px;
    opacity: 0.55;
}

.hero-dot.active {
    width: 54px;
    opacity: 1;
    background: var(--sky);
}

.hero-search {
    position: absolute;
    z-index: 5;
    right: max(16px, calc((100% - 1180px) / 2));
    bottom: 32px;
    display: flex;
    width: min(460px, calc(100% - 32px));
    padding: 8px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.74);
    backdrop-filter: blur(16px);
}

.hero-search input,
.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    font: inherit;
}

.hero-search input {
    padding: 0 14px;
}

.hero-search button {
    flex: none;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--sky-deep), var(--blue));
    padding: 0 18px;
    font-weight: 800;
    cursor: pointer;
}

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

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.section-head {
    margin-bottom: 26px;
}

.section-head p {
    margin: 0 0 8px;
    color: var(--sky);
    font-size: 14px;
    font-weight: 800;
}

.section-head h2,
.category-card h2,
.site-footer h2 {
    margin: 0;
    color: #ffffff;
}

.section-head h2 {
    font-size: clamp(26px, 4vw, 38px);
    letter-spacing: -0.04em;
}

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

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

.section-head.with-link a,
.panel-link,
.center-link a {
    color: var(--sky);
    font-weight: 800;
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
    border: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(56, 189, 248, 0.44);
    box-shadow: 0 22px 45px rgba(14, 165, 233, 0.18);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--bg-card-soft);
}

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

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

.poster-shine {
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), transparent);
}

.card-body {
    padding: 14px;
}

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

.card-body h2,
.card-body h3 {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
}

.card-body p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.ranking-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.rank-row {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.rank-row:hover .rank-title {
    color: var(--sky);
}

.rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky-deep), var(--blue));
    font-weight: 900;
}

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

.rank-meta {
    color: var(--muted);
    font-size: 12px;
}

.panel-link {
    display: inline-flex;
    margin-top: 18px;
}

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

.category-tile {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--line);
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.18));
}

.category-tile span,
.category-tile p {
    position: relative;
    z-index: 2;
}

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

.category-tile p {
    margin: 10px 0 0;
    color: var(--muted-bright);
    line-height: 1.7;
}

.category-tile:hover img {
    opacity: 0.72;
    transform: scale(1.08);
}

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(14, 165, 233, 0.26), transparent 25rem),
        linear-gradient(135deg, #020617, #0f172a 55%, #1e293b);
}

.small-hero {
    min-height: 330px;
    display: flex;
    align-items: end;
    padding: 72px max(16px, calc((100% - 1180px) / 2)) 54px;
}

.small-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 64px);
    letter-spacing: -0.06em;
}

.small-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 18px 0 0;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.8;
}

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

.category-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid var(--line);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.44);
}

.category-card img {
    height: 180px;
    object-fit: cover;
    opacity: 0.76;
}

.category-card div {
    padding: 20px;
}

.category-card p {
    color: var(--muted);
    line-height: 1.75;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--line);
}

.search-box {
    flex: 1 1 260px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.search-box span {
    color: var(--sky);
    font-weight: 800;
}

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

.filter-button {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(30, 41, 59, 0.74);
    cursor: pointer;
    font-weight: 800;
}

.filter-button.active,
.filter-button:hover {
    color: #ffffff;
    background: linear-gradient(90deg, var(--sky-deep), var(--blue));
    border-color: transparent;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid var(--line);
}

.ranking-poster {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 2 / 3;
    background: var(--bg-card-soft);
}

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

.ranking-info h2 {
    margin: 8px 0 8px;
    font-size: 24px;
}

.ranking-info p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.meta-line {
    margin-bottom: 8px !important;
    color: #bae6fd !important;
}

.center-link {
    text-align: center;
    margin-top: 34px;
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.detail-backdrop,
.detail-backdrop img,
.detail-backdrop div {
    position: absolute;
    inset: 0;
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(16px) saturate(1.1);
    transform: scale(1.08);
    opacity: 0.55;
}

.detail-backdrop div {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.58)),
        linear-gradient(0deg, #020617, transparent 55%, rgba(2, 6, 23, 0.6));
}

.detail-wrap {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    align-items: end;
    padding: 78px 0 64px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.detail-poster img {
    aspect-ratio: 2 / 3;
    height: 100%;
    object-fit: cover;
}

.detail-info h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 68px);
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.detail-tags {
    margin: 20px 0;
}

.lead-text {
    max-width: 830px;
    color: #dbeafe;
    font-size: 19px;
    line-height: 1.85;
}

.player-section {
    padding-top: 24px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #000000;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

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

.player-start {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.22), rgba(2, 6, 23, 0.38));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start span {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    border-radius: 999px;
    font-size: 34px;
    background: linear-gradient(135deg, var(--sky-deep), var(--blue));
    box-shadow: 0 18px 45px rgba(14, 165, 233, 0.38);
}

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

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

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

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

.content-card p {
    margin: 0;
    color: var(--muted-bright);
    line-height: 2;
    font-size: 16px;
}

.site-footer {
    margin-top: 36px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), #020617);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 30px;
}

.site-footer h2 {
    font-size: 18px;
    margin-bottom: 14px;
}

.site-footer p,
.site-footer a {
    color: var(--muted);
    line-height: 1.8;
}

.site-footer a {
    display: block;
    margin: 5px 0;
}

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

.footer-bottom {
    padding: 18px 0;
    text-align: center;
    color: #64748b;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.movie-card.hidden-by-filter {
    display: none;
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 18px;
    }

    .two-column,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }

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

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

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

    .menu-toggle {
        display: inline-block;
    }

    .site-header.open .mobile-nav {
        display: block;
    }

    .site-header.open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero,
    .hero-content {
        min-height: 680px;
        height: 680px;
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 178px;
    }

    .hero-search {
        left: 16px;
        right: 16px;
        bottom: 88px;
        width: auto;
    }

    .hero-controls {
        bottom: 28px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

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

    .section-wrap {
        padding: 42px 0;
    }

    .section-head.with-link {
        align-items: start;
        flex-direction: column;
    }

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

    .card-body {
        padding: 12px;
    }

    .card-body p {
        display: none;
    }

    .rank-row {
        grid-template-columns: 40px 1fr;
    }

    .rank-meta {
        display: none;
    }

    .small-hero {
        min-height: 300px;
        padding-top: 54px;
    }

    .ranking-card {
        grid-template-columns: 92px 1fr;
        gap: 14px;
    }

    .ranking-info h2 {
        font-size: 20px;
    }

    .detail-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 48px;
    }

    .detail-poster {
        width: 210px;
    }

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

@media (max-width: 480px) {
    .site-logo {
        font-size: 18px;
    }

    .movie-grid,
    .spotlight-grid,
    .dense-grid,
    .category-grid,
    .category-list-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-tile {
        min-height: 210px;
        padding: 16px;
    }

    .category-tile span {
        font-size: 20px;
    }

    .ranking-card {
        grid-template-columns: 78px 1fr;
        padding: 12px;
    }
}
