:root {
    color-scheme: light;
    --sakura-50: #fff1f5;
    --sakura-100: #ffe4ec;
    --sakura-300: #ff9db3;
    --sakura-500: #f4547c;
    --sakura-600: #db2f5d;
    --azuki-500: #dc2626;
    --matcha-500: #4f9d69;
    --yuzu-500: #ffc300;
    --shiratama-50: #fafafa;
    --shiratama-100: #f5f5f5;
    --shiratama-300: #d4d4d4;
    --shiratama-700: #404040;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --shadow: 0 20px 45px rgba(31, 41, 55, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 157, 179, 0.22), transparent 28rem),
        radial-gradient(circle at 90% 0%, rgba(255, 195, 0, 0.18), transparent 26rem),
        linear-gradient(180deg, #fff7fa 0%, #ffffff 38%, #fffdf7 100%);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
}

.header-inner {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sakura-500), var(--azuki-500));
    box-shadow: 0 12px 24px rgba(244, 84, 124, 0.28);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    color: #374151;
    font-weight: 650;
}

.desktop-nav a {
    position: relative;
    transition: color 0.22s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--sakura-600);
}

.desktop-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.58rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sakura-500), var(--azuki-500));
}

.top-search {
    position: relative;
    flex: 0 0 18rem;
}

.top-search input,
.filter-input,
.filter-select {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search input {
    padding: 0.7rem 3.4rem 0.7rem 1rem;
}

.top-search input:focus,
.filter-input:focus,
.filter-select:focus {
    border-color: var(--sakura-300);
    box-shadow: 0 0 0 4px rgba(244, 84, 124, 0.14);
}

.top-search button {
    position: absolute;
    top: 50%;
    right: 0.3rem;
    transform: translateY(-50%);
    border: 0;
    border-radius: 999px;
    padding: 0.48rem 0.86rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sakura-500), var(--azuki-500));
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    border: 0;
    border-radius: 0.8rem;
    padding: 0.65rem 0.8rem;
    background: var(--sakura-100);
    color: var(--sakura-600);
    font-weight: 800;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0 0 1rem;
}

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

.mobile-panel a {
    display: block;
    padding: 0.75rem 0;
    border-top: 1px solid var(--line);
    font-weight: 700;
}

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

.section {
    margin: 4rem 0;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-title::before {
    content: "";
    width: 0.32rem;
    height: 2rem;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--sakura-500), var(--azuki-500));
}

.section-desc {
    max-width: 52rem;
    margin: 0.65rem 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 84, 124, 0.24);
    border-radius: 999px;
    padding: 0.65rem 1rem;
    color: var(--sakura-600);
    background: #ffffff;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(244, 84, 124, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(244, 84, 124, 0.16);
}

.hero {
    position: relative;
    margin: 2rem 0 4rem;
    overflow: hidden;
    border-radius: 1.5rem;
    min-height: clamp(28rem, 54vw, 42rem);
    box-shadow: var(--shadow);
    background: #111827;
}

.hero-track {
    position: relative;
    height: 100%;
    min-height: inherit;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    gap: 2rem;
    align-items: end;
    padding: clamp(1.5rem, 5vw, 4.5rem);
    color: #ffffff;
    opacity: 0;
    transform: translateX(2%);
    transition: opacity 0.75s ease, transform 0.75s ease;
    pointer-events: none;
}

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

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.36)),
        radial-gradient(circle at 20% 80%, rgba(244, 84, 124, 0.42), transparent 22rem);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.44;
    filter: saturate(1.08);
}

.hero-content,
.hero-poster {
    position: relative;
    z-index: 1;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    color: #ffffff;
    background: rgba(244, 84, 124, 0.92);
    font-size: 0.84rem;
    font-weight: 800;
}

.badge.soft {
    color: #7f1d1d;
    background: #fee2e2;
}

.hero h1,
.hero h2 {
    max-width: 56rem;
    margin: 0;
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.07em;
}

.hero p {
    max-width: 46rem;
    margin: 1.2rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
}

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

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.85rem 1.3rem;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--sakura-500), var(--azuki-500));
    box-shadow: 0 18px 34px rgba(244, 84, 124, 0.28);
}

.btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px) scale(1.02);
}

.hero-poster {
    align-self: center;
    justify-self: end;
    width: min(100%, 21rem);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transform: translateX(-50%);
}

.hero-dot {
    width: 0.58rem;
    height: 0.58rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 2.2rem;
    background: var(--sakura-500);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 2.8rem;
    height: 2.8rem;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.42);
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease;
}

.hero:hover .hero-arrow {
    opacity: 1;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.72);
}

.hero-arrow.prev {
    left: 1rem;
}

.hero-arrow.next {
    right: 1rem;
}

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

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

.movie-card {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.78);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 84, 124, 0.34);
    box-shadow: 0 24px 45px rgba(31, 41, 55, 0.14);
}

.card-poster {
    position: relative;
    height: 19rem;
    overflow: hidden;
    background: #f3f4f6;
}

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

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

.play-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0);
    font-weight: 900;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease;
}

.movie-card:hover .play-hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.28);
}

.card-badge {
    position: absolute;
    right: 0.65rem;
    top: 0.65rem;
    border-radius: 999px;
    padding: 0.28rem 0.58rem;
    color: #ffffff;
    background: var(--azuki-500);
    font-size: 0.75rem;
    font-weight: 800;
}

.card-body {
    padding: 1rem;
}

.card-title {
    margin: 0;
    color: #1f2937;
    font-size: 1.05rem;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.movie-card:hover .card-title {
    color: var(--sakura-600);
}

.card-desc {
    min-height: 3.25rem;
    margin: 0.58rem 0 0;
    color: #606a78;
    font-size: 0.9rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.9rem;
    color: #6b7280;
    font-size: 0.84rem;
}

.card-meta strong {
    color: #d97706;
}

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

.movie-card.horizontal {
    display: grid;
    grid-template-columns: 14rem 1fr;
}

.movie-card.horizontal .card-poster {
    height: 100%;
    min-height: 12rem;
}

.movie-card.horizontal .card-desc {
    -webkit-line-clamp: 3;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 10rem;
    border-radius: 1.1rem;
    padding: 1.2rem;
    color: #ffffff;
    background: linear-gradient(135deg, #1f2937, #111827);
    box-shadow: 0 16px 35px rgba(31, 41, 55, 0.14);
}

.category-tile:nth-child(3n + 1) {
    background: linear-gradient(135deg, var(--sakura-500), var(--azuki-500));
}

.category-tile:nth-child(3n + 2) {
    background: linear-gradient(135deg, var(--matcha-500), #166534);
}

.category-tile:nth-child(3n) {
    background: linear-gradient(135deg, #f59e0b, #dc2626);
}

.category-tile h2,
.category-tile h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.35rem;
    font-weight: 950;
}

.category-tile p {
    position: relative;
    z-index: 1;
    margin: 0.7rem 0 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.65;
}

.category-tile::after {
    content: "";
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 8rem;
    height: 8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.page-hero {
    margin: 2rem 0 2.5rem;
    border: 1px solid rgba(244, 84, 124, 0.14);
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 5vw, 3.5rem);
    background:
        linear-gradient(135deg, rgba(255, 228, 236, 0.96), rgba(255, 255, 255, 0.96)),
        radial-gradient(circle at 90% 10%, rgba(255, 195, 0, 0.22), transparent 18rem);
    box-shadow: 0 16px 40px rgba(31, 41, 55, 0.08);
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.page-hero p {
    max-width: 58rem;
    margin: 1rem 0 0;
    color: #5f6470;
    line-height: 1.9;
}

.filters {
    display: grid;
    grid-template-columns: minmax(16rem, 1fr) 12rem 12rem 12rem;
    gap: 0.9rem;
    margin: 0 0 1.5rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 30px rgba(31, 41, 55, 0.06);
}

.filter-input,
.filter-select {
    box-sizing: border-box;
    padding: 0.78rem 1rem;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 4.5rem 7rem 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem;
    border: 1px solid rgba(229, 231, 235, 0.76);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(31, 41, 55, 0.12);
}

.rank-no {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sakura-500), var(--azuki-500));
    font-weight: 950;
}

.rank-cover {
    overflow: hidden;
    border-radius: 0.8rem;
    background: #f3f4f6;
}

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

.rank-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 900;
}

.rank-desc {
    margin: 0.4rem 0 0;
    color: #667085;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rank-score {
    min-width: 5rem;
    color: #d97706;
    font-weight: 950;
    text-align: right;
}

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

.detail-main,
.detail-side {
    min-width: 0;
}

.breadcrumb {
    margin: 1.5rem 0 0;
    color: #6b7280;
    font-size: 0.92rem;
}

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

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

.player-shell video {
    display: block;
    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: 0.8rem;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.2), rgba(0, 0, 0, 0.72));
    cursor: pointer;
}

.player-overlay[hidden] {
    display: none;
}

.player-icon {
    width: 5rem;
    height: 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sakura-500), var(--azuki-500));
    box-shadow: 0 22px 45px rgba(244, 84, 124, 0.32);
    font-size: 2rem;
}

.player-title {
    font-size: 1.05rem;
    font-weight: 900;
}

.detail-card {
    margin-top: 1.5rem;
    border: 1px solid rgba(229, 231, 235, 0.78);
    border-radius: 1.25rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(31, 41, 55, 0.08);
}

.detail-card h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1rem 0 0;
}

.detail-meta span {
    border-radius: 999px;
    padding: 0.38rem 0.72rem;
    background: var(--shiratama-100);
    color: #4b5563;
    font-size: 0.88rem;
    font-weight: 750;
}

.detail-card h2,
.detail-side h2 {
    margin: 1.7rem 0 0.75rem;
    font-size: 1.35rem;
    font-weight: 950;
}

.detail-card p {
    color: #4b5563;
    line-height: 1.9;
}

.detail-cover {
    overflow: hidden;
    border-radius: 1rem;
    background: #f3f4f6;
    box-shadow: 0 14px 28px rgba(31, 41, 55, 0.1);
}

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

.side-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.side-item {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 0.75rem;
    align-items: center;
    border-radius: 0.9rem;
    padding: 0.55rem;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.07);
}

.side-item img {
    width: 5rem;
    height: 4rem;
    object-fit: cover;
    border-radius: 0.65rem;
    background: #f3f4f6;
}

.side-item strong {
    display: block;
    color: #1f2937;
    font-size: 0.94rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-item span {
    display: block;
    margin-top: 0.25rem;
    color: #6b7280;
    font-size: 0.8rem;
}

.site-footer {
    margin-top: 5rem;
    color: #e5e7eb;
    background: #171717;
}

.footer-inner {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 1rem;
    color: #ffffff;
}

.site-footer p,
.site-footer a {
    color: #d4d4d4;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding: 1rem 0;
    color: #a3a3a3;
    text-align: center;
}

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

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

@media (max-width: 900px) {
    .desktop-nav,
    .top-search {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-items: end;
    }

    .hero-poster {
        display: none;
    }

    .movie-grid,
    .movie-grid.compact-grid,
    .horizontal-list,
    .category-grid,
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .movie-card.horizontal {
        grid-template-columns: 1fr;
    }

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

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

    .detail-side {
        order: -1;
    }

    .detail-cover {
        max-width: 18rem;
    }
}

@media (max-width: 640px) {
    .header-inner,
    main,
    .mobile-panel,
    .footer-inner {
        width: min(100% - 1rem, 1280px);
    }

    .brand {
        font-size: 1.1rem;
    }

    .brand-mark {
        width: 2.1rem;
        height: 2.1rem;
    }

    .hero {
        border-radius: 1rem;
        min-height: 32rem;
        margin-top: 1rem;
    }

    .hero-slide {
        padding: 1.25rem;
    }

    .hero h1,
    .hero h2 {
        font-size: 2.25rem;
    }

    .movie-grid,
    .movie-grid.compact-grid,
    .horizontal-list,
    .category-grid,
    .footer-inner,
    .filters {
        grid-template-columns: 1fr;
    }

    .card-poster {
        height: 17rem;
    }

    .rank-item {
        grid-template-columns: 3.5rem 5.5rem 1fr;
    }

    .rank-score {
        grid-column: 3;
        text-align: left;
    }
}
