:root {
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-300: #f9a8d4;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-500: #f97316;
    --yellow-50: #fefce8;
    --yellow-500: #eab308;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-md: 0 4px 6px -1px rgba(17, 24, 39, 0.10), 0 2px 4px -2px rgba(17, 24, 39, 0.10);
    --shadow-lg: 0 10px 15px -3px rgba(17, 24, 39, 0.12), 0 4px 6px -4px rgba(17, 24, 39, 0.12);
    --shadow-xl: 0 20px 25px -5px rgba(17, 24, 39, 0.14), 0 8px 10px -6px rgba(17, 24, 39, 0.14);
    --shadow-2xl: 0 25px 50px -12px rgba(17, 24, 39, 0.25);
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--gray-800);
    background:
        radial-gradient(circle at 8% 0%, rgba(236, 72, 153, 0.12), transparent 28rem),
        radial-gradient(circle at 95% 10%, rgba(249, 115, 22, 0.12), transparent 30rem),
        linear-gradient(135deg, var(--pink-50), var(--orange-50), var(--yellow-50));
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4rem;
    gap: 1rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    color: var(--white);
    font-size: 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink-500), var(--orange-500), var(--yellow-500));
    box-shadow: 0 0 28px rgba(236, 72, 153, 0.45);
}

.brand-text {
    font-size: 1.55rem;
    line-height: 1;
    background: linear-gradient(90deg, var(--pink-500), var(--orange-500), var(--yellow-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--gray-700);
    font-weight: 650;
}

.main-nav a,
.nav-dropdown > button {
    border: 0;
    background: transparent;
    color: var(--gray-700);
    padding: 0.35rem 0;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown:hover > button {
    color: var(--pink-500);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 12rem;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    display: block;
    padding: 0.65rem 0.8rem;
    border-radius: 0.55rem;
    color: var(--gray-700);
}

.dropdown-panel a:hover {
    background: var(--pink-50);
}

.nav-search,
.mobile-search {
    display: flex;
    align-items: center;
    background: var(--gray-100);
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search:focus-within,
.mobile-search:focus-within {
    border-color: var(--pink-300);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.nav-search input,
.mobile-search input {
    width: 14rem;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0.65rem 0.9rem;
}

.nav-search button,
.mobile-search button {
    border: 0;
    background: transparent;
    padding: 0.65rem 0.9rem;
    color: var(--gray-500);
}

.mobile-menu-button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    color: var(--gray-700);
}

.mobile-menu {
    border-top: 1px solid var(--gray-200);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
}

.mobile-menu nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.mobile-menu nav a {
    padding: 0.7rem 0.8rem;
    border-radius: 0.75rem;
    background: var(--gray-50);
}

.page-main {
    padding: 2rem 0 4rem;
}

.hero {
    position: relative;
    min-height: 31rem;
    margin: 2rem auto 4rem;
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: linear-gradient(90deg, var(--pink-500), var(--orange-500), var(--yellow-500));
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 26rem;
    height: 26rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    filter: blur(4px);
}

.hero::before {
    left: -8rem;
    top: 15%;
}

.hero::after {
    right: -6rem;
    bottom: -6rem;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
    align-items: center;
    gap: 2rem;
    min-height: 31rem;
    padding: 3rem;
    color: var(--white);
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero h1 {
    margin: 1rem 0 1rem;
    font-size: clamp(2.35rem, 5vw, 4.75rem);
    line-height: 1.05;
    font-weight: 900;
    animation: softPulse 3.8s ease-in-out infinite;
}

.hero p {
    max-width: 42rem;
    margin: 0 0 1.5rem;
    font-size: 1.12rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.button,
.button-outline,
.button-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.8rem;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
    background: var(--white);
    color: var(--pink-600);
    box-shadow: var(--shadow-lg);
}

.button-outline {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.button-soft {
    background: linear-gradient(90deg, var(--pink-500), var(--orange-500));
    color: var(--white);
    border: 0;
}

.button:hover,
.button-outline:hover,
.button-soft:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.hero-search {
    display: flex;
    width: min(100%, 34rem);
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-xl);
}

.hero-search input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0.95rem 1.15rem;
    color: var(--gray-800);
    background: transparent;
}

.hero-search button {
    border: 0;
    padding: 0.95rem 1.2rem;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(90deg, var(--pink-500), var(--orange-500));
}

.hero-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hero-feature-card {
    position: relative;
    min-height: 13rem;
    border-radius: 1.25rem;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: var(--shadow-xl);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-feature-card:nth-child(2) {
    transform: translateY(-1.5rem);
}

.hero-feature-card:hover {
    transform: translateY(-0.6rem) scale(1.03);
    box-shadow: var(--shadow-2xl);
}

.hero-feature-card img {
    width: 100%;
    height: 100%;
    min-height: 13rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-feature-card:hover img {
    transform: scale(1.1);
}

.hero-feature-card span {
    position: absolute;
    inset: auto 0 0;
    padding: 2.4rem 0.8rem 0.8rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
    font-weight: 850;
    text-align: center;
}

@keyframes softPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.92; transform: scale(1.01); }
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 1.5rem;
}

.section-header h2,
.page-title h1 {
    margin: 0;
    color: var(--gray-800);
    font-size: clamp(1.65rem, 3vw, 2.5rem);
    font-weight: 900;
}

.section-header p,
.page-title p {
    margin: 0.5rem 0 0;
    color: var(--gray-600);
    line-height: 1.7;
}

.section-link {
    flex-shrink: 0;
    color: var(--pink-500);
    font-weight: 800;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: -2rem 0 4rem;
}

.stat-card,
.category-tile,
.panel,
.detail-card {
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-lg);
}

.stat-card {
    padding: 1.4rem;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    color: var(--pink-500);
}

.stat-card span {
    color: var(--gray-600);
    font-weight: 700;
}

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

.movie-card {
    min-width: 0;
}

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card-link:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-2xl);
}

.movie-poster {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pink-100), var(--orange-100));
}

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

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

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 55%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.movie-card-link:hover .movie-poster::after {
    opacity: 1;
}

.duration,
.category-badge {
    position: absolute;
    z-index: 1;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
}

.duration {
    right: 0.6rem;
    bottom: 0.6rem;
    background: rgba(0, 0, 0, 0.78);
}

.category-badge {
    top: 0.6rem;
    left: 0.6rem;
    background: linear-gradient(90deg, var(--pink-500), var(--orange-500));
}

.movie-card-body {
    padding: 1rem;
}

.movie-card-body h3 {
    display: -webkit-box;
    min-height: 3rem;
    margin: 0 0 0.55rem;
    overflow: hidden;
    color: var(--gray-800);
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card-link:hover h3 {
    color: var(--pink-500);
}

.movie-line {
    display: -webkit-box;
    min-height: 2.6rem;
    margin: 0 0 0.8rem;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta,
.movie-submeta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.movie-submeta {
    margin-top: 0.5rem;
}

.content-section {
    margin-bottom: 4rem;
}

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

.category-tile {
    display: block;
    padding: 1.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-0.35rem);
    box-shadow: var(--shadow-2xl);
}

.category-tile h2,
.category-tile h3 {
    margin: 0 0 0.45rem;
    font-size: 1.35rem;
    font-weight: 900;
}

.category-tile p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
}

.category-tile .category-count {
    display: inline-flex;
    margin-top: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    color: var(--pink-600);
    background: var(--pink-50);
    font-weight: 800;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.toolbar input {
    width: min(100%, 22rem);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    outline: 0;
    padding: 0.75rem 1rem;
}

.sort-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sort-buttons button {
    border: 0;
    border-radius: 0.75rem;
    padding: 0.65rem 0.9rem;
    color: var(--gray-700);
    background: var(--gray-100);
    font-weight: 750;
}

.sort-buttons button.active,
.sort-buttons button:hover {
    color: var(--white);
    background: var(--pink-500);
}

.ranking-list {
    display: grid;
    gap: 1rem;
}

.rank-row {
    display: grid;
    grid-template-columns: 4rem 8rem minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    color: var(--white);
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-500), var(--orange-500));
}

.rank-row img {
    width: 8rem;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, var(--pink-100), var(--orange-100));
}

.rank-row h2 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}

.rank-row p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.55;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(18rem, 0.85fr);
    gap: 2rem;
    align-items: start;
}

.breadcrumb {
    margin: 0 0 1rem;
    color: var(--gray-600);
    font-size: 0.92rem;
}

.breadcrumb a {
    color: var(--pink-600);
    font-weight: 750;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000000;
    box-shadow: var(--shadow-2xl);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.28));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-shell.is-ready .player-overlay {
    opacity: 0;
    visibility: hidden;
}

.player-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-500), var(--orange-500));
    box-shadow: var(--shadow-2xl);
    font-size: 1.8rem;
}

.player-status {
    max-width: 90%;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    font-weight: 750;
}

.detail-card {
    padding: 1.4rem;
    margin-top: 1.25rem;
}

.detail-card h1 {
    margin: 0 0 0.9rem;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.25;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.detail-actions button {
    border: 0;
}

.article-block {
    margin-top: 1.25rem;
}

.article-block h2 {
    margin: 0 0 0.7rem;
    font-size: 1.35rem;
}

.article-block p {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.9;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.tag {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    color: var(--pink-600);
    background: var(--pink-50);
    font-size: 0.85rem;
    font-weight: 750;
}

.side-poster {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.side-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: linear-gradient(135deg, var(--pink-100), var(--orange-100));
}

.side-poster .side-info {
    padding: 1rem;
}

.side-info dl {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 0.45rem 0.75rem;
    margin: 0;
}

.side-info dt {
    color: var(--gray-500);
}

.side-info dd {
    margin: 0;
    color: var(--gray-800);
    font-weight: 750;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.compact-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 7rem;
    border-radius: var(--radius-lg);
    background: var(--gray-900);
    box-shadow: var(--shadow-md);
}

.compact-card img {
    width: 100%;
    height: 100%;
    min-height: 7rem;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.compact-card:hover img {
    transform: scale(1.08);
    opacity: 0.55;
}

.compact-card span:not(.rank-number) {
    position: absolute;
    inset: auto 0 0;
    padding: 1.8rem 0.7rem 0.7rem;
    color: var(--white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    font-weight: 850;
    font-size: 0.9rem;
}

.compact-card .rank-number {
    position: absolute;
    z-index: 1;
    top: 0.5rem;
    left: 0.5rem;
}

.search-results-note {
    margin: 1rem 0;
    color: var(--gray-600);
}

.empty-state {
    padding: 4rem 1rem;
    border-radius: var(--radius-2xl);
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.site-footer {
    margin-top: 3rem;
    color: var(--white);
    background: linear-gradient(90deg, #831843, #7c2d12, #713f12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}

.site-footer h3 {
    margin: 0 0 1rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: #fbcfe8;
    line-height: 1.75;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-note {
    margin-top: 1rem;
    font-weight: 750;
}

.footer-bottom {
    padding: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: #f9a8d4;
    text-align: center;
    font-size: 0.9rem;
}

.hidden-by-filter {
    display: none !important;
}

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

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

    .hero-showcase {
        max-width: 42rem;
    }
}

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

    .mobile-menu-button {
        display: inline-flex;
    }

    .stats-grid,
    .movie-grid,
    .category-grid,
    .footer-grid,
    .detail-layout,
    .related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .detail-layout {
        gap: 1.25rem;
    }

    .rank-row {
        grid-template-columns: 3rem 6rem minmax(0, 1fr);
    }

    .rank-row .button-soft {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 1rem, 1280px);
    }

    .hero {
        margin-top: 1rem;
        border-radius: 1.2rem;
    }

    .hero-inner {
        padding: 1.5rem;
    }

    .hero-showcase,
    .stats-grid,
    .movie-grid,
    .category-grid,
    .footer-grid,
    .detail-layout,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .hero-feature-card:nth-child(2) {
        transform: none;
    }

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

    .toolbar input {
        width: 100%;
    }

    .rank-row {
        grid-template-columns: 2.8rem 1fr;
    }

    .rank-row img {
        width: 100%;
        grid-column: 1 / -1;
    }
}
