:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-strong: rgba(15, 23, 42, 0.96);
    --line: rgba(148, 163, 184, 0.18);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --sky: #38bdf8;
    --sky-dark: #0284c7;
    --blue: #2563eb;
    --gold: #f59e0b;
    --danger: #fb7185;
    --radius: 22px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 34rem),
        radial-gradient(circle at 82% 8%, rgba(37, 99, 235, 0.15), transparent 28rem),
        linear-gradient(180deg, #020617 0%, #0f172a 50%, #020617 100%);
    min-height: 100vh;
}

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

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

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: 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 rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

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

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.28);
}

.brand-text {
    display: grid;
    gap: 2px;
}

.brand-text strong {
    font-size: 22px;
    line-height: 1;
    color: transparent;
    background: linear-gradient(90deg, #e0f2fe, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}

.brand-text small {
    color: var(--muted);
    font-size: 12px;
}

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

.nav-link {
    position: relative;
    color: var(--muted-strong);
    font-weight: 700;
    padding: 26px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--sky);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.24s ease;
}

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

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

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.8);
    color: #fff;
    cursor: pointer;
}

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

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

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

.mobile-panel-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px 0 20px;
}

.mobile-category-link {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    padding: 11px 14px;
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.7);
}

.hero-section {
    padding: 34px 0 24px;
}

.hero-shell {
    position: relative;
    min-height: 560px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, 0.18);
    box-shadow: var(--shadow);
    background: rgba(15, 23, 42, 0.8);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 34px;
    align-items: center;
    padding: 68px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(22px);
    transition: opacity 0.46s ease, transform 0.46s ease, visibility 0.46s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.1);
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 64% 36%, rgba(56, 189, 248, 0.18), transparent 22rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.72));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7dd3fc;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 18px 0 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #f8fafc;
}

.hero-content p {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0;
}

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

.hero-meta {
    margin: 24px 0;
}

.hero-meta span,
.meta-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.16);
    font-size: 13px;
}

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

.primary-button,
.secondary-button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
    min-height: 48px;
    padding: 0 24px;
    color: #fff;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    box-shadow: 0 18px 36px rgba(14, 165, 233, 0.28);
}

.secondary-button {
    min-height: 48px;
    padding: 0 22px;
    color: #dbeafe;
    border: 1px solid rgba(125, 211, 252, 0.28);
    background: rgba(15, 23, 42, 0.58);
}

.primary-button:hover,
.secondary-button:hover,
.text-button:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    z-index: 2;
    display: block;
    width: min(360px, 100%);
    aspect-ratio: 2 / 3;
    justify-self: end;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(15, 23, 42, 0.7));
}

.hero-poster img,
.poster-link img,
.detail-poster img,
.rank-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.24), rgba(15, 23, 42, 0.92));
}

.hero-controls {
    position: absolute;
    left: 68px;
    right: 68px;
    bottom: 92px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.hero-controls button {
    pointer-events: auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(125, 211, 252, 0.25);
    border-radius: 999px;
    color: #e0f2fe;
    background: rgba(15, 23, 42, 0.62);
    cursor: pointer;
}

.hero-dots {
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.hero-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 999px !important;
    padding: 0 !important;
    border: 0 !important;
    background: rgba(226, 232, 240, 0.35) !important;
}

.hero-dot.is-active {
    width: 28px !important;
    background: #38bdf8 !important;
}

.hero-search {
    position: absolute;
    left: 68px;
    bottom: 34px;
    z-index: 5;
    width: min(620px, calc(100% - 136px));
    display: flex;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.66);
    backdrop-filter: blur(12px);
}

.hero-search input,
.toolbar input,
.toolbar select {
    border: 1px solid rgba(148, 163, 184, 0.18);
    outline: 0;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.86);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    height: 44px;
    border-radius: 999px;
    padding: 0 18px;
}

.hero-search button {
    height: 44px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    padding: 0 18px;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    cursor: pointer;
}

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

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

.section-head h2 {
    margin: 8px 0 0;
    font-size: clamp(26px, 3vw, 38px);
    letter-spacing: -0.03em;
}

.section-head a,
.text-button {
    color: #7dd3fc;
    font-weight: 900;
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    display: grid;
    align-content: end;
    gap: 6px;
    overflow: hidden;
    border-radius: 24px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.76);
    transition: transform 0.24s ease, border 0.24s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(125, 211, 252, 0.46);
}

.category-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.72;
}

.category-tile strong,
.category-tile small,
.category-tile em {
    position: relative;
    z-index: 2;
}

.category-tile strong {
    font-size: 22px;
}

.category-tile small {
    color: #cbd5e1;
}

.category-tile em {
    color: #7dd3fc;
    font-style: normal;
    font-weight: 900;
}

.toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.toolbar input,
.toolbar select {
    min-height: 46px;
    border-radius: 16px;
    padding: 0 14px;
}

.toolbar input {
    flex: 1;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.68);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(125, 211, 252, 0.4);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(15, 23, 42, 0.9));
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.76));
}

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
}

.play-chip {
    left: 14px;
    bottom: 14px;
    padding: 8px 12px;
    background: rgba(14, 165, 233, 0.92);
}

.rank-badge {
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.24);
}

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

.movie-title {
    display: block;
    min-height: 48px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
}

.movie-title:hover {
    color: #7dd3fc;
}

.movie-card-body p {
    margin: 10px 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    min-height: 46px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.tag-row span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #bae6fd;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(125, 211, 252, 0.12);
    font-size: 12px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    background:
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.22), transparent 26rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.96));
}

.compact-hero {
    padding: 76px 0 60px;
}

.compact-hero h1 {
    margin: 12px 0 14px;
    max-width: 900px;
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -0.05em;
}

.compact-hero p {
    max-width: 760px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
}

.pill-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.pill-link {
    padding: 9px 13px;
    border-radius: 999px;
    color: #dbeafe;
    border: 1px solid rgba(125, 211, 252, 0.18);
    background: rgba(15, 23, 42, 0.58);
}

.pill-link:hover,
.pill-link.is-active {
    color: #fff;
    background: rgba(14, 165, 233, 0.28);
    border-color: rgba(125, 211, 252, 0.44);
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 22px;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.68);
}

.category-overview-image {
    display: block;
    min-height: 180px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.category-overview-card h2 {
    margin: 10px 0;
    font-size: 28px;
}

.category-overview-card p {
    color: #cbd5e1;
    line-height: 1.75;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 96px 62px 1fr;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.68);
}

.rank-cover {
    aspect-ratio: 2 / 3;
    border-radius: 16px;
    overflow: hidden;
}

.rank-number {
    color: transparent;
    font-size: 32px;
    font-weight: 950;
    background: linear-gradient(135deg, #fbbf24, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
}

.rank-info a {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.rank-info p {
    margin: 8px 0 12px;
    color: #94a3b8;
    line-height: 1.65;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.95;
}

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 18%, rgba(56, 189, 248, 0.22), transparent 26rem);
}

.detail-layout {
    position: relative;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 38px;
    align-items: center;
    z-index: 2;
}

.detail-poster {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow);
    background: rgba(15, 23, 42, 0.62);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: #bae6fd;
    font-weight: 800;
}

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

.detail-one-line {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.85;
    max-width: 820px;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0;
}

.detail-meta-grid span {
    padding: 12px 14px;
    border-radius: 16px;
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.68);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.detail-tags {
    margin-bottom: 24px;
}

.player-card {
    border-radius: 30px;
    padding: 14px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.94));
    box-shadow: var(--shadow);
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    object-fit: contain;
}

.player-start {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.62));
    cursor: pointer;
    z-index: 2;
}

.player-start span {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    box-shadow: 0 20px 44px rgba(14, 165, 233, 0.28);
    font-size: 30px;
    padding-left: 4px;
}

.player-start strong {
    font-size: 20px;
}

.player-frame.is-playing .player-start {
    opacity: 0;
    pointer-events: none;
}

.detail-content {
    display: grid;
    gap: 18px;
}

.content-panel {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.68);
}

.content-panel h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.content-panel p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.9;
    font-size: 17px;
}

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

.detail-nav-row a {
    padding: 16px 18px;
    border-radius: 18px;
    color: #dbeafe;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(125, 211, 252, 0.16);
}

.site-footer {
    margin-top: 42px;
    padding: 46px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.74), rgba(2, 6, 23, 0.98));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 34px;
}

.footer-brand strong {
    display: block;
    color: #fff;
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p,
.footer-links a {
    color: #94a3b8;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-links h2 {
    margin: 0 0 8px;
    color: #e2e8f0;
    font-size: 18px;
}

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

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

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

    .hero-slide {
        grid-template-columns: 1fr 280px;
        padding: 48px;
    }
}

@media (max-width: 840px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero-shell {
        min-height: 760px;
        border-radius: 24px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: start;
        padding: 32px;
    }

    .hero-poster {
        justify-self: start;
        width: 230px;
    }

    .hero-controls {
        left: 32px;
        right: 32px;
        bottom: 100px;
    }

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

    .section-head,
    .toolbar {
        align-items: stretch;
        flex-direction: column;
    }

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

    .category-overview-card,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(260px, 100%);
    }

    .detail-meta-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rank-item {
        grid-template-columns: 74px 44px 1fr;
        gap: 12px;
    }
}

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

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text small {
        display: none;
    }

    .hero-shell {
        min-height: 820px;
    }

    .hero-content h1,
    .detail-info h1,
    .compact-hero h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .hero-content p,
    .detail-one-line,
    .compact-hero p {
        font-size: 16px;
    }

    .hero-search {
        border-radius: 24px;
        flex-direction: column;
    }

    .category-grid,
    .category-overview-grid,
    .movie-grid,
    .movie-grid.compact,
    .footer-grid,
    .detail-nav-row,
    .detail-meta-grid {
        grid-template-columns: 1fr;
    }

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

    .rank-number {
        grid-column: 1;
        grid-row: 2;
    }

    .rank-info {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
}
