:root {
    --primary-50: #e6f7f7;
    --primary-100: #b3e6e6;
    --primary-400: #1ab0b0;
    --primary-500: #009999;
    --primary-600: #007a7a;
    --primary-700: #005b5b;
    --accent-500: #f97316;
    --secondary-50: #f0f4f8;
    --secondary-100: #d9e2ec;
    --secondary-200: #bcccdc;
    --secondary-400: #829ab1;
    --secondary-500: #627d98;
    --secondary-600: #486581;
    --secondary-700: #334e68;
    --secondary-900: #102a43;
    --white: #ffffff;
    --shadow-md: 0 10px 30px rgba(16, 42, 67, 0.10);
    --shadow-lg: 0 24px 60px rgba(16, 42, 67, 0.18);
    --radius-lg: 18px;
    --radius-md: 14px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
    color: var(--secondary-900);
    background: var(--secondary-50);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(188, 204, 220, 0.55);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(0, 153, 153, 0.25);
}

.brand-text {
    display: grid;
    line-height: 1.2;
}

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

.brand-text em {
    font-size: 12px;
    color: var(--secondary-500);
    font-style: normal;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--secondary-700);
    font-weight: 600;
}

.desktop-nav a {
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--primary-600);
}

.header-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    min-width: 300px;
    border: 1px solid var(--secondary-200);
    background: var(--white);
    border-radius: 999px;
    overflow: hidden;
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 11px 16px;
    background: transparent;
}

.header-search button,
.hero-search button,
.filter-panel button {
    border: 0;
    cursor: pointer;
    background: var(--primary-500);
    color: var(--white);
    padding: 11px 18px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.hero-search button:hover,
.filter-panel button:hover {
    background: var(--primary-600);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--primary-50);
    color: var(--primary-700);
    font-size: 22px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    padding: 8px 16px 16px;
    background: var(--white);
    border-top: 1px solid var(--secondary-100);
}

.mobile-nav a {
    display: block;
    padding: 12px 6px;
    color: var(--secondary-700);
    font-weight: 700;
}

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

.hero {
    position: relative;
    min-height: 78vh;
    color: var(--white);
    background: var(--secondary-900);
    overflow: hidden;
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1s ease, transform 1.2s ease;
    pointer-events: none;
}

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.12)),
                linear-gradient(0deg, rgba(16, 42, 67, 0.95), rgba(16, 42, 67, 0.10) 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: var(--container);
    padding-top: 30px;
    padding-bottom: 220px;
}

.hero-kicker {
    display: inline-flex;
    align-self: flex-start;
    border-radius: 999px;
    padding: 7px 14px;
    margin-bottom: 18px;
    background: rgba(0, 153, 153, 0.92);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-content h2,
.page-hero h1,
.detail-info h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-content p {
    max-width: 760px;
    margin: 0 0 20px;
    font-size: clamp(17px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.86);
}

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

.hero-meta span,
.detail-meta span {
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    font-size: 14px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 12px 22px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: var(--primary-500);
    box-shadow: 0 14px 30px rgba(0, 153, 153, 0.28);
}

.btn-primary:hover {
    background: var(--primary-600);
}

.btn-glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-controls {
    position: absolute;
    right: max(24px, calc((100vw - var(--container)) / 2));
    bottom: 36px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--primary-500);
}

.hero-search-panel {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;
    transform: translateX(-50%);
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
}

.hero-search-panel h1 {
    margin: 0 0 4px;
    font-size: clamp(24px, 3vw, 36px);
}

.hero-search-panel p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-search {
    display: flex;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
}

.hero-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 14px 16px;
    color: var(--secondary-900);
    background: transparent;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hero-pills a {
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    transition: background 0.2s ease;
}

.hero-pills a:hover {
    background: rgba(0, 153, 153, 0.9);
}

.section {
    padding: 70px 0;
    background: var(--white);
}

.section-light {
    background: var(--secondary-50);
}

.section-accent {
    background: linear-gradient(135deg, var(--secondary-900), #0b3446 52%, var(--primary-700));
    color: var(--white);
}

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

.section-head h2,
.site-footer h2,
.content-card h2,
.sidebar-card h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
}

.section-head p {
    margin: 0;
    color: var(--secondary-600);
}

.section-head-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.text-link {
    color: var(--primary-600);
    font-weight: 800;
}

.text-link.light {
    color: var(--primary-100);
}

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

.category-card {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(188, 204, 220, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover,
.movie-card:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 153, 153, 0.35);
}

.category-card span {
    font-size: 20px;
    font-weight: 900;
}

.category-card p {
    color: var(--secondary-600);
    margin: 12px 0;
}

.category-card em {
    color: var(--primary-600);
    font-style: normal;
    font-weight: 800;
}

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

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

.movie-card {
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(188, 204, 220, 0.48);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--secondary-100);
}

.poster-wrap img,
.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .poster-wrap img,
.rank-item:hover .rank-thumb img {
    transform: scale(1.08);
}

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 45%);
    opacity: 0.88;
}

.poster-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(0, 153, 153, 0.92);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.poster-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.movie-card:hover .poster-play {
    transform: scale(1);
    opacity: 1;
}

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

.movie-meta {
    margin: 0 0 7px;
    color: var(--secondary-500);
    font-size: 13px;
    font-weight: 700;
}

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.28;
}

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

.movie-desc {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--secondary-600);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.tag-row span {
    border-radius: 999px;
    padding: 4px 9px;
    background: var(--primary-50);
    color: var(--primary-700);
    font-size: 12px;
    font-weight: 700;
}

.rank-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 86px 44px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.13);
    transition: transform 0.25s ease, background 0.25s ease;
}

.page-rank-list .rank-item {
    color: var(--secondary-900);
    background: var(--white);
    border-color: rgba(188, 204, 220, 0.55);
    box-shadow: var(--shadow-md);
}

.rank-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
}

.page-rank-list .rank-item:hover {
    background: var(--white);
}

.rank-thumb {
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: var(--secondary-100);
}

.rank-number {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-400);
}

.rank-info h3 {
    margin: 0 0 6px;
    font-size: 19px;
}

.rank-info p {
    display: -webkit-box;
    margin: 0 0 6px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.78);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-rank-list .rank-info p {
    color: var(--secondary-600);
}

.rank-info span {
    color: var(--secondary-400);
    font-size: 13px;
    font-weight: 700;
}

.rank-side,
.sidebar-card,
.content-card {
    border-radius: 24px;
    padding: 26px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(188, 204, 220, 0.55);
}

.rank-side {
    align-self: start;
    position: sticky;
    top: 96px;
    color: var(--secondary-900);
}

.rank-side h2,
.sidebar-card h2 {
    font-size: 24px;
}

.rank-side p {
    color: var(--secondary-600);
}

.page-main {
    background: var(--secondary-50);
}

.page-hero,
.detail-hero {
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary-900), #0b3446 55%, var(--primary-700));
}

.page-hero.slim {
    padding: 62px 0 58px;
}

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

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs a:hover {
    color: var(--white);
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid rgba(188, 204, 220, 0.55);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.category-cover-stack img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 12px;
    background: var(--secondary-100);
}

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

.category-overview-card p {
    margin: 0 0 14px;
    color: var(--secondary-600);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 170px 160px 110px;
    gap: 12px;
    margin-bottom: 26px;
    padding: 16px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(188, 204, 220, 0.55);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid var(--secondary-200);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--secondary-900);
    background: var(--white);
    outline: 0;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--primary-500);
}

.filter-panel button {
    border-radius: 12px;
}

.empty-state {
    display: none;
    margin: 30px 0 0;
    padding: 22px;
    text-align: center;
    border-radius: 18px;
    background: var(--white);
    color: var(--secondary-600);
}

.empty-state.is-visible {
    display: block;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

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

.detail-hero {
    padding: 42px 0 58px;
}

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

.player-card {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 26px;
    background: #000;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    cursor: pointer;
    color: var(--white);
    background: #000;
    overflow: hidden;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.45s ease, opacity 0.25s ease;
}

.player-cover:hover img {
    transform: scale(1.04);
    opacity: 0.62;
}

.player-cover.is-hidden {
    display: none;
}

.big-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: rgba(0, 153, 153, 0.92);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
    font-size: 32px;
}

.detail-info h1 {
    font-size: clamp(36px, 4vw, 56px);
}

.detail-one-line {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.detail-tags span {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.content-card p {
    margin: 0 0 16px;
    color: var(--secondary-700);
    font-size: 17px;
}

.content-card h2:not(:first-child) {
    margin-top: 28px;
}

.info-list {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px 14px;
    margin: 0;
}

.info-list dt {
    color: var(--secondary-500);
    font-weight: 800;
}

.info-list dd {
    margin: 0;
    color: var(--secondary-800);
}

.site-footer {
    color: rgba(255, 255, 255, 0.82);
    background: var(--secondary-900);
    padding: 54px 0 0;
}

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

.footer-about p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
    color: var(--white);
    font-size: 18px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.68);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-100);
}

.footer-bottom {
    margin-top: 34px;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.58);
}

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

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

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .hero {
        min-height: 860px;
    }

    .hero-content {
        padding-bottom: 280px;
    }

    .hero-search-panel {
        bottom: 22px;
    }

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

    .rank-layout,
    .two-column,
    .detail-grid,
    .detail-content-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rank-side {
        position: static;
    }

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

    .filter-panel {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .header-inner {
        min-height: 64px;
    }

    .brand-text em {
        display: none;
    }

    .hero {
        min-height: 820px;
    }

    .hero-content h2,
    .page-hero h1,
    .detail-info h1 {
        font-size: 38px;
    }

    .hero-search-panel {
        padding: 18px;
    }

    .hero-search {
        display: grid;
    }

    .hero-controls {
        right: 16px;
        bottom: 16px;
    }

    .section {
        padding: 46px 0;
    }

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

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

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

    .category-cover-stack {
        grid-template-columns: repeat(4, 1fr);
    }

    .filter-panel {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 72px 38px minmax(0, 1fr);
        gap: 12px;
    }

    .detail-hero {
        padding: 28px 0 42px;
    }

    .player-card {
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .movie-grid,
    .movie-grid.compact,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 780px;
    }

    .hero-meta,
    .detail-meta {
        gap: 8px;
    }

    .rank-item {
        grid-template-columns: 66px minmax(0, 1fr);
    }

    .rank-number {
        display: none;
    }
}
