:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #eef6ff;
    --text: #0f172a;
    --muted: #64748b;
    --line: rgba(148, 163, 184, 0.35);
    --blue: #2563eb;
    --cyan: #06b6d4;
    --deep: #0f172a;
    --deep-blue: #172554;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 45%, #f8fafc 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #fff;
    background: linear-gradient(90deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
}

.header-inner {
    width: min(1240px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(34, 211, 238, 0.28);
}

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

.brand-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(90deg, #bfdbfe, #67e8f9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-subtitle {
    font-size: 12px;
    color: #bfdbfe;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.nav-link {
    color: #dbeafe;
    font-weight: 650;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #67e8f9;
    transform: translateY(-1px);
}

.header-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.5);
}

.header-search input,
.mobile-search input,
.large-search input,
.filter-field input,
.filter-field select {
    min-width: 0;
    border: 0;
    outline: 0;
}

.header-search input {
    width: 190px;
    padding: 10px 12px;
    color: #fff;
    background: transparent;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: #94a3b8;
}

.header-search button,
.mobile-search button,
.large-search button {
    border: 0;
    color: #fff;
    cursor: pointer;
    font-weight: 750;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.header-search button {
    padding: 10px 14px;
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    padding: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    background: #0f172a;
}

.mobile-nav.open {
    display: grid;
    gap: 12px;
}

.mobile-search {
    display: flex;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.mobile-search input {
    flex: 1;
    padding: 12px;
    color: #fff;
    background: rgba(15, 23, 42, 0.6);
}

.mobile-search button {
    padding: 0 16px;
}

.page-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0 56px;
}

.home-page {
    padding-top: 24px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border-radius: 32px;
    color: #fff;
    background: radial-gradient(circle at 18% 20%, rgba(34, 211, 238, 0.35), transparent 28%), linear-gradient(115deg, #0f172a 0%, #1e3a8a 50%, #020617 100%);
    box-shadow: var(--shadow);
}

.hero-glow {
    position: absolute;
    inset: auto -8% -18% auto;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.18);
    filter: blur(12px);
}

.hero-static-title {
    position: relative;
    z-index: 3;
    max-width: 760px;
    padding: 54px 56px 0;
}

.eyebrow,
.hero-static-title span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    color: #a5f3fc;
    background: rgba(14, 165, 233, 0.18);
    border: 1px solid rgba(103, 232, 249, 0.24);
    font-size: 13px;
    font-weight: 800;
}

.hero-static-title h1 {
    margin: 18px 0 12px;
    font-size: clamp(34px, 6vw, 66px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-static-title p {
    max-width: 680px;
    margin: 0;
    color: #dbeafe;
    font-size: 18px;
}

.hero-carousel {
    position: relative;
    z-index: 2;
    min-height: 350px;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
    align-items: end;
    gap: 42px;
    min-height: 350px;
    padding: 24px 56px 48px;
    background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 58, 138, 0.82) 46%, rgba(15, 23, 42, 0.55) 100%), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    display: grid;
    animation: fadeIn 0.5s ease both;
}

.hero-copy h2 {
    margin: 16px 0 12px;
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-copy p {
    max-width: 640px;
    margin: 0;
    color: #dbeafe;
    font-size: 17px;
}

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

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

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
}

.hero-tags span,
.detail-tags span {
    padding: 6px 10px;
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.primary-btn,
.ghost-btn,
.section-link,
.category-info span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.3);
}

.ghost-btn {
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-link:hover,
.category-card:hover .category-info span {
    transform: translateY(-2px);
}

.hero-poster {
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

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

.hero-controls {
    position: relative;
    z-index: 4;
    display: flex;
    gap: 9px;
    padding: 0 56px 28px;
}

.hero-dot {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.32);
}

.hero-dot.active {
    background: #67e8f9;
}

.hero-category-strip {
    position: relative;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 56px 46px;
}

.hero-category-strip a,
.mini-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 750;
}

.content-section,
.split-section,
.category-grid,
.detail-content,
.detail-neighbor {
    margin-top: 36px;
}

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

.section-head h2,
.search-panel h2,
.story-panel h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-head p,
.search-panel p {
    margin: 8px 0 0;
    color: var(--muted);
}

.section-link,
.category-info span {
    color: var(--blue);
    background: #dbeafe;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 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(37, 99, 235, 0.24);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #f8fafc);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.68) 100%);
}

.play-dot,
.year-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.play-dot {
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--blue);
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-dot {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.year-badge {
    right: 10px;
    top: 10px;
    padding: 4px 8px;
    border-radius: 9px;
    background: rgba(15, 23, 42, 0.72);
    font-size: 12px;
    font-weight: 800;
}

.rank-badge {
    left: 10px;
    top: 10px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    font-weight: 900;
}

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

.movie-card-body h3 {
    display: -webkit-box;
    min-height: 42px;
    margin: 0;
    overflow: hidden;
    color: #0f172a;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card:hover h3 a {
    color: var(--blue);
}

.movie-meta,
.movie-line {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.movie-line {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    margin-top: 10px;
}

.tag-row span {
    padding: 4px 8px;
    color: #1e40af;
    background: #dbeafe;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 24px;
}

.rank-panel,
.search-panel,
.page-hero,
.filter-panel,
.story-panel,
.detail-neighbor,
.category-card,
.search-result-section,
.search-default-section {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
}

.rank-panel,
.search-panel {
    padding: 24px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    background: #f8fafc;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
    background: #dbeafe;
    transform: translateX(3px);
}

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

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

.rank-type,
.rank-hot {
    color: var(--muted);
    font-size: 13px;
}

.large-search {
    display: flex;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
}

.large-search input {
    flex: 1;
    padding: 15px 16px;
    background: transparent;
}

.large-search button {
    padding: 0 24px;
}

.mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.mini-links a {
    color: #1e40af;
    background: #dbeafe;
    border-color: transparent;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 20px;
}

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

.crumb-sep {
    color: #cbd5e1;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 36px;
}

.small-hero {
    color: #fff;
    background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.35), transparent 30%), linear-gradient(115deg, #0f172a, #1e3a8a 55%, #020617);
}

.page-hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #dbeafe;
    font-size: 17px;
}

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

.category-card {
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
}

.category-card a {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 210px;
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #dbeafe;
}

.category-thumbs img {
    width: 100%;
    height: 100%;
    min-height: 104px;
    object-fit: cover;
}

.category-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 24px;
}

.category-info h2 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -0.02em;
}

.category-info p {
    margin: 0;
    color: var(--muted);
}

.filter-panel {
    display: flex;
    gap: 14px;
    align-items: end;
    padding: 18px;
    margin-top: 24px;
}

.filter-field {
    display: grid;
    gap: 7px;
    min-width: 170px;
}

.grow-field {
    flex: 1;
}

.filter-field label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.filter-field input,
.filter-field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--text);
    background: #f8fafc;
    border: 1px solid var(--line);
}

.movie-card.is-hidden {
    display: none;
}

.detail-page {
    width: min(1180px, calc(100% - 32px));
}

.detail-hero {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    background: #0f172a;
    box-shadow: var(--shadow);
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.78) 54%, rgba(15, 23, 42, 0.42) 100%), var(--detail-image);
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
}

.detail-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 42px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 2 / 3;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

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

.detail-copy h1 {
    margin: 16px 0 14px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.detail-one-line {
    max-width: 760px;
    margin: 0;
    color: #dbeafe;
    font-size: 18px;
}

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

.detail-meta span {
    padding: 7px 11px;
    border-radius: 12px;
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.12);
}

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

.player-section {
    margin-top: 30px;
}

.movie-player {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    background: #020617;
    box-shadow: var(--shadow);
}

.media-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #020617;
    object-fit: contain;
}

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

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

.player-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    padding-left: 5px;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.92);
    font-size: 32px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.player-title {
    max-width: min(760px, 90%);
    text-align: center;
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 900;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.48);
}

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

.story-panel {
    padding: 26px;
}

.story-panel p {
    margin: 14px 0 0;
    color: #334155;
    font-size: 16px;
}

.detail-neighbor {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
}

.detail-neighbor a {
    color: var(--blue);
    font-weight: 800;
}

.search-result-section,
.search-default-section {
    padding: 24px;
}

.search-result-section:empty {
    display: none;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(90deg, #0f172a, #172554, #0f172a);
}

.footer-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0;
    display: grid;
    gap: 10px;
}

.footer-brand {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.footer-inner p {
    max-width: 760px;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    color: #93c5fd;
    font-weight: 700;
}

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

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

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

    .split-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 840px) {
    .page-shell,
    .detail-page {
        width: min(100% - 24px, 760px);
        padding-top: 20px;
    }

    .brand {
        min-width: 0;
    }

    .brand-title {
        font-size: 15px;
    }

    .hero-section {
        min-height: auto;
        border-radius: 24px;
    }

    .hero-static-title,
    .hero-slide,
    .hero-controls,
    .hero-category-strip {
        padding-left: 22px;
        padding-right: 22px;
    }

    .hero-static-title {
        padding-top: 32px;
    }

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

    .hero-poster,
    .detail-poster {
        width: min(260px, 80%);
        margin: 0 auto;
    }

    .movie-grid,
    .compact-grid,
    .rank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .category-card a {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        display: grid;
    }

    .detail-layout {
        padding: 26px;
    }

    .detail-neighbor {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .brand-subtitle {
        display: none;
    }

    .movie-grid,
    .compact-grid,
    .rank-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .movie-line,
    .tag-row {
        display: none;
    }

    .page-hero,
    .rank-panel,
    .search-panel,
    .story-panel,
    .search-result-section,
    .search-default-section {
        padding: 20px;
        border-radius: 18px;
    }

    .large-search {
        display: grid;
    }

    .large-search button {
        min-height: 46px;
    }

    .rank-row {
        grid-template-columns: 34px minmax(0, 1fr) auto;
    }

    .rank-type {
        display: none;
    }
}
