:root {
    --amber-950: #451a03;
    --amber-900: #78350f;
    --amber-800: #92400e;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-300: #fcd34d;
    --amber-100: #fef3c7;
    --orange-50: #fff7ed;
    --gray-950: #030712;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --shadow-soft: 0 20px 45px rgba(120, 53, 15, 0.16);
    --shadow-card: 0 14px 35px rgba(17, 24, 39, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 38%, #fff7ed 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--amber-950), var(--amber-800), var(--amber-950));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(69, 26, 3, 0.32);
}

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

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

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

.brand-mark {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.28);
    font-size: 25px;
    font-weight: 900;
}

.brand-text {
    display: grid;
    gap: 0;
}

.brand-text strong {
    font-size: 22px;
    letter-spacing: 0.02em;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 10px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.94);
    transition: background 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover {
    background: rgba(245, 158, 11, 0.22);
    transform: translateY(-1px);
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    border-radius: 2px;
}

.hero-slider {
    position: relative;
    min-height: 610px;
    color: var(--white);
    overflow: hidden;
    background: var(--amber-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    pointer-events: none;
    transition: opacity 0.65s ease, transform 0.85s ease;
    background-image: linear-gradient(90deg, rgba(69, 26, 3, 0.95), rgba(146, 64, 14, 0.78), rgba(17, 24, 39, 0.28)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 42%, rgba(252, 211, 77, 0.32), transparent 32%), linear-gradient(180deg, transparent, rgba(3, 7, 18, 0.22));
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.54fr);
    align-items: center;
    gap: 42px;
    padding: 68px 0 72px;
}

.hero-copy {
    max-width: 680px;
    animation: fadeUp 0.7s ease both;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--amber-100);
    backdrop-filter: blur(12px);
}

.hero-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.hero-copy h1 span {
    color: var(--amber-300);
}

.hero-copy p {
    max-width: 620px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 21px);
}

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

.btn-primary,
.btn-ghost,
.btn-soft,
.watch-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
    padding: 13px 24px;
    color: var(--amber-950);
    background: var(--white);
    box-shadow: 0 14px 30px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover,
.btn-ghost:hover,
.btn-soft:hover,
.watch-link:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.78);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn-soft {
    padding: 10px 18px;
    color: var(--amber-900);
    background: var(--amber-100);
}

.hero-panel {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(20px);
    animation: floatIn 0.8s ease both;
}

.hero-panel img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.hero-panel-info {
    padding: 16px 4px 4px;
}

.hero-panel-info strong {
    display: block;
    font-size: 22px;
}

.hero-panel-info small {
    display: block;
    margin-top: 4px;
    color: var(--amber-100);
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 26px;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

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

.hero-dot {
    width: 36px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.hero-dot.active {
    background: var(--amber-300);
}

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

.hero-arrow {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.search-strip {
    position: relative;
    z-index: 5;
    margin-top: -40px;
}

.search-strip-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.search-strip input {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid var(--amber-100);
    border-radius: 18px;
    background: #fffaf0;
    outline: none;
}

.search-strip button {
    min-height: 54px;
    padding: 0 26px;
    border: 0;
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
    font-weight: 800;
    cursor: pointer;
}

.section {
    padding: 76px 0;
}

.section-alt {
    background: linear-gradient(90deg, #fef3c7, #fff7ed);
}

.section-gray {
    background: #f9fafb;
}

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

.section-head h1,
.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 8px 0 0;
    max-width: 700px;
    color: var(--gray-600);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(17, 24, 39, 0.18);
}

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-900), var(--gray-900));
}

.poster-wrap img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.poster-year,
.poster-score {
    position: absolute;
    top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--white);
    font-weight: 800;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

.poster-year {
    left: 12px;
    background: rgba(69, 26, 3, 0.72);
}

.poster-score {
    right: 12px;
    background: rgba(245, 158, 11, 0.88);
}

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

.movie-card-body h2 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.35;
}

.movie-card-body h2 a:hover {
    color: var(--amber-700);
}

.movie-meta {
    min-height: 24px;
    margin: 0 0 10px;
    color: var(--amber-700);
    font-size: 13px;
    font-weight: 700;
}

.movie-desc {
    margin: 0 0 14px;
    color: var(--gray-600);
    font-size: 14px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 30px;
    margin-bottom: 14px;
}

.tag-row span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 3px 10px;
    border-radius: 999px;
    color: var(--amber-900);
    background: var(--amber-100);
    font-size: 12px;
    font-weight: 700;
}

.watch-link {
    width: 100%;
    min-height: 42px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
}

.movie-card-compact .movie-card-body h2 {
    font-size: 17px;
}

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

.category-card {
    min-height: 188px;
    padding: 24px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-900), var(--amber-600));
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgba(120, 53, 15, 0.25);
}

.category-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 23px;
}

.category-card p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.category-card span {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 800;
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.68fr);
    gap: 28px;
}

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

.mini-card {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
}

.mini-card img {
    width: 74px;
    height: 98px;
    border-radius: 12px;
    object-fit: cover;
}

.mini-card strong {
    display: block;
    line-height: 1.35;
}

.mini-card small {
    display: block;
    margin-top: 8px;
    color: var(--gray-500);
}

.page-hero {
    padding: 72px 0 54px;
    color: var(--white);
    background: radial-gradient(circle at 72% 20%, rgba(252, 211, 77, 0.28), transparent 25%), linear-gradient(135deg, var(--amber-950), var(--amber-800));
}

.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr repeat(3, minmax(150px, 190px));
    gap: 14px;
    align-items: end;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.filter-panel label {
    display: grid;
    gap: 6px;
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    color: var(--gray-900);
    background: #fffdf8;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.empty-result {
    display: none;
    padding: 34px;
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray-600);
    text-align: center;
    box-shadow: var(--shadow-card);
}

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

.rank-item {
    display: grid;
    grid-template-columns: 60px 92px 1fr 110px;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.13);
}

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

.rank-poster img {
    width: 92px;
    height: 120px;
    border-radius: 14px;
    object-fit: cover;
}

.rank-content h2 {
    margin: 0 0 6px;
    font-size: 20px;
}

.rank-content p {
    margin: 0 0 6px;
    color: var(--amber-700);
    font-weight: 800;
    font-size: 14px;
}

.rank-content small {
    display: block;
    color: var(--gray-600);
}

.rank-score {
    display: grid;
    justify-items: end;
    gap: 4px;
}

.rank-score strong {
    color: var(--amber-700);
    font-size: 28px;
    line-height: 1;
}

.rank-score span {
    color: var(--gray-500);
    font-size: 12px;
}

.detail-hero {
    padding: 54px 0;
    color: var(--white);
    background-image: linear-gradient(90deg, rgba(69, 26, 3, 0.94), rgba(146, 64, 14, 0.78), rgba(17, 24, 39, 0.36)), var(--detail-bg);
    background-size: cover;
    background-position: center;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--amber-300);
}

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

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.detail-info h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 6vw, 60px);
    line-height: 1.08;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--amber-100);
    font-weight: 800;
}

.detail-info p {
    max-width: 760px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.player-card {
    overflow: hidden;
    border-radius: 28px;
    background: var(--gray-950);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.player-box {
    position: relative;
    background: #000;
    aspect-ratio: 16 / 9;
}

.player-box video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--white);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72)), var(--player-cover);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-icon {
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-800));
    box-shadow: 0 20px 44px rgba(245, 158, 11, 0.38);
    font-size: 42px;
    text-indent: 6px;
}

.player-title {
    padding: 18px 22px;
    color: var(--white);
    background: linear-gradient(90deg, var(--gray-950), var(--amber-950));
}

.player-title strong {
    display: block;
    font-size: 20px;
}

.player-title small {
    color: var(--amber-100);
}

.detail-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.content-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

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

.content-card p {
    margin: 0;
    color: var(--gray-600);
    white-space: pre-line;
}

.site-footer {
    color: var(--gray-300);
    background: linear-gradient(180deg, var(--gray-900), #000000);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 32px;
    padding: 56px 0 34px;
}

.footer-logo {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
}

.footer-brand p {
    max-width: 440px;
    margin: 0;
    color: var(--gray-500);
}

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

.footer-links a {
    display: block;
    margin: 8px 0;
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--amber-300);
}

.footer-bottom {
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-500);
    text-align: center;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

    .hero-content,
    .feature-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 360px;
    }
}

@media (max-width: 820px) {
    .header-inner {
        min-height: 68px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 18px;
        background: linear-gradient(180deg, var(--amber-950), var(--amber-800));
        box-shadow: 0 24px 42px rgba(0, 0, 0, 0.22);
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 14px 18px;
    }

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

    .hero-content {
        padding-top: 46px;
    }

    .hero-panel {
        max-width: 300px;
    }

    .search-strip-inner,
    .filter-panel,
    .detail-layout,
    .detail-text,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .rank-score {
        grid-column: 3;
        justify-items: start;
    }

    .rank-poster img {
        width: 74px;
        height: 98px;
    }
}

@media (max-width: 560px) {
    .brand-text strong {
        font-size: 18px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .grid,
    .grid-three,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 54px 0;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

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

    .btn-primary,
    .btn-ghost,
    .btn-soft {
        width: 100%;
    }

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

    .rank-poster {
        display: none;
    }

    .rank-score {
        grid-column: 2;
    }
}
