.leaderboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.leaderboard-header {
    text-align: center;
    margin-bottom: 2rem;
}

.leaderboard-header h1 {
    font-size: 3rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-family: 'Phonk Contrast', sans-serif;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
    position: relative;
    animation: titleReveal 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.reset-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-cyan);
    font-size: 1.2rem;
    flex-direction: column;
}

.reset-timer i {
    color: rgba(0, 242, 255, 0.7);
}

.reset-timer .season-name {
    font-family: 'Phonk Contrast', sans-serif;
    font-size: 1.4rem;
    margin-top: 0.5rem;
    text-shadow: 0 0 10px currentColor;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.reset-timer:hover .season-name {
    opacity: 1;
    transform: scale(1.05);
}

#resetTimer {
    transition: color 0.3s ease;
    text-shadow: 0 0 10px currentColor;
}

/* Category Cards */
.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.category-card {
    background: rgba(112, 156, 149, 0.03);
    border: 2px solid rgba(112, 156, 149, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.5s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: cardReveal 0.6s ease forwards;
}

.category-card:nth-child(1) { animation-delay: 0.2s; }
.category-card:nth-child(2) { animation-delay: 0.4s; }
.category-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(112, 156, 149, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #709c95;
    box-shadow: 0 10px 30px rgba(112, 156, 149, 0.2);
}

.category-card:hover::before {
    opacity: 1;
    animation: pulseCard 2s ease-in-out infinite;
}

@keyframes pulseCard {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.category-header h2 {
    color: #709c95;
    font-size: 1.8rem;
    font-family: 'Phonk Contrast', sans-serif;
    text-shadow: 0 0 10px rgba(112, 156, 149, 0.5);
}

/* Remove prize pool styles */
.prize-pool, .prize-tag, .prize-amount, .prize-distribution {
    display: none;
}

.top-players {
    margin-bottom: 1.5rem;
}

.preview-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(112, 156, 149, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: playerSlideIn 0.5s ease forwards;
}

.preview-player:nth-child(1) { animation-delay: 0.8s; }
.preview-player:nth-child(2) { animation-delay: 1.0s; }
.preview-player:nth-child(3) { animation-delay: 1.2s; }

@keyframes playerSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.preview-player:hover {
    background: rgba(112, 156, 149, 0.1);
}

.preview-rank {
    font-size: 1.2rem;
    font-weight: bold;
    color: #709c95;
    width: 40px;
    text-align: center;
}

.preview-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #709c95;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.preview-avatar img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.preview-info {
    flex: 1;
}

.preview-name {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.preview-score {
    color: #709c95;
    font-size: 0.9rem;
}

.category-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(112, 156, 149, 0.2);
    color: #709c95;
    font-size: 0.9rem;
}

.category-footer i {
    transition: transform 0.3s ease;
}

.category-card:hover .category-footer i {
    transform: translateX(5px);
}

/* Category Navigation */
.category-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(112, 156, 149, 0.05);
    border-radius: 8px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prize-info {
    text-align: right;
}

.prize-amount {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prize-distribution {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Prize Tags */
.prize-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #ffd700;
    font-size: 1rem;
    font-weight: bold;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-buttons .cyber-btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.category-buttons .cyber-btn.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.score-category {
    display: none;
}

.score-category.active {
    display: block;
    position: relative;
}

.scores-content {
    position: relative;
}

.score-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(112, 156, 149, 0.03);
    border: 1px solid rgba(112, 156, 149, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: scoreCardPulse 2s ease-in-out infinite;
}

.score-card:hover {
    transform: translateX(5px);
    border-color: #709c95;
    box-shadow: 0 0 20px rgba(112, 156, 149, 0.1);
}

.rank {
    font-size: 1.5rem;
    font-weight: bold;
    color: #709c95;
    width: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rank::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.2), transparent 70%);
    animation: rankGlow 3s ease-in-out infinite;
}

@keyframes rankGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.user-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-cyan);
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
    position: relative;
    flex-shrink: 0;
}

.user-avatar img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.user-details {
    flex: 1;
}

.username {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.car-info, .map-info, .session-time {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.score {
    font-size: 1.8rem;
    font-weight: bold;
    color: #709c95;
    text-shadow: 0 0 10px rgba(112, 156, 149, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.score-info {
    position: relative;
    font-size: 1.2rem;
    color: var(--primary-cyan);
    animation: subtlePulse 2s ease-in-out infinite;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 1rem;
    background: transparent;
    padding: 0;
}

/* Add larger invisible hover area */
.score-info::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: -1;
}

.score-info i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-info:hover,
.score-info:hover::before {
    background: rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    color: #00f2ff;
    opacity: 1;
}

@keyframes subtlePulse {
    0% { 
        opacity: 0.1;
        transform: scale(0.95);
    }
    50% { 
        opacity: 1;
    transform: scale(1.1);
        background: rgba(0, 242, 255, 0.2);
    }
    100% { 
        opacity: 0.1;
        transform: scale(0.95);
    }
}

/* Prize information popup */
.score-info::after {
    content: attr(data-prizes);
    position: absolute;
    top: 50%;
    left: calc(100% + 1rem);
    transform: translateY(-50%);
    background: rgba(0, 20, 30, 0.95);
    border: 1px solid rgba(0, 242, 255, 0.3);
    padding: 1rem;
    border-radius: 8px;
    width: max-content;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    backdrop-filter: blur(10px);
    white-space: pre-line;
    line-height: 1.4;
}

.score-info:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(10px);
}

/* Details popup */
.score-info::after {
    content: attr(data-details);
    position: absolute;
    top: 50%;
    left: calc(100% + 1rem);
    transform: translateY(-50%);
    background: rgba(0, 20, 30, 0.95);
    border: 1px solid rgba(0, 242, 255, 0.3);
    padding: 1rem;
    border-radius: 8px;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
    white-space: pre;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    backdrop-filter: blur(10px);
}

.score-info:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(10px);
}

/* Hide and seek effect */
.scores-content:has(.score-info:hover) .score-card:not(:has(.score-info:hover)) {
    animation: runAway 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    pointer-events: none;
}

/* Keep current card visible */
.score-card:has(.score-info:hover) {
    animation: popOut 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    z-index: 10;
}

@keyframes runAway {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    20% {
        transform: translate(var(--fly-x) * 0.1, var(--fly-y) * 0.1) rotate(var(--fly-rotate) * 0.2) scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: translate(var(--fly-x), var(--fly-y)) rotate(var(--fly-rotate)) scale(0.8);
        opacity: 0;
    }
}

@keyframes popOut {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 242, 255, 0);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    }
}

/* Random fly-away positions */
.score-card:nth-child(3n) { --fly-x: 2000px; --fly-y: -500px; --fly-rotate: 45deg; }
.score-card:nth-child(3n+1) { --fly-x: -2000px; --fly-y: 800px; --fly-rotate: -45deg; }
.score-card:nth-child(3n+2) { --fly-x: 2000px; --fly-y: 600px; --fly-rotate: 90deg; }
.score-card:nth-child(4n) { --fly-x: -2000px; --fly-y: -800px; --fly-rotate: -90deg; }
.score-card:nth-child(4n+1) { --fly-x: 2000px; --fly-y: -200px; --fly-rotate: 60deg; }
.score-card:nth-child(5n) { --fly-x: -2000px; --fly-y: 300px; --fly-rotate: -60deg; }

.score-card {
    transition: none;
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    position: relative;
}

/* Top 3 styles for Public section */
.score-card:nth-child(1) {
    background: linear-gradient(90deg, rgba(8, 233, 221, 0.15), rgba(8, 233, 221, 0.05));
    border-color: rgba(8, 233, 221, 0.4);
    animation: glowFirst 3s ease-in-out infinite;
    position: relative;
}

.score-card:nth-child(2) {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.03));
    border-color: rgba(255, 215, 0, 0.3);
    animation: glowSecond 3s ease-in-out infinite;
    position: relative;
}

.score-card:nth-child(3) {
    background: linear-gradient(90deg, rgba(220, 220, 220, 0.15), rgba(220, 220, 220, 0.05));
    border-color: rgba(220, 220, 220, 0.4);
    animation: glowThird 3s ease-in-out infinite;
    position: relative;
}

.score-card:nth-child(1) .rank,
.score-card:nth-child(1) .score {
    color: #08e9dd;
    text-shadow: 0 0 10px rgba(8, 233, 221, 0.7);
}

.score-card:nth-child(2) .rank,
.score-card:nth-child(2) .score {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.score-card:nth-child(3) .rank,
.score-card:nth-child(3) .score {
    color: #dcdcdc;
    text-shadow: 0 0 10px rgba(220, 220, 220, 0.7);
}

/* Top 3 styles for VIP section */
[data-category="vip"] .score-card:nth-child(1) {
    background: linear-gradient(90deg, rgba(8, 233, 221, 0.15), rgba(8, 233, 221, 0.05));
    border-color: rgba(8, 233, 221, 0.4);
    animation: glowFirst 3s ease-in-out infinite;
    position: relative;
}

[data-category="vip"] .score-card:nth-child(2) {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.03));
    border-color: rgba(255, 215, 0, 0.3);
    animation: glowSecond 3s ease-in-out infinite;
    position: relative;
}

[data-category="vip"] .score-card:nth-child(3) {
    background: linear-gradient(90deg, rgba(220, 220, 220, 0.15), rgba(220, 220, 220, 0.05));
    border-color: rgba(220, 220, 220, 0.4);
    animation: glowThird 3s ease-in-out infinite;
    position: relative;
}

[data-category="vip"] .score-card:nth-child(1) .rank,
[data-category="vip"] .score-card:nth-child(1) .score {
    color: #08e9dd;
    text-shadow: 0 0 10px rgba(8, 233, 221, 0.7);
}

[data-category="vip"] .score-card:nth-child(2) .rank,
[data-category="vip"] .score-card:nth-child(2) .score {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

[data-category="vip"] .score-card:nth-child(3) .rank,
[data-category="vip"] .score-card:nth-child(3) .score {
    color: #dcdcdc;
    text-shadow: 0 0 10px rgba(220, 220, 220, 0.7);
}

@keyframes glowFirst {
    0%, 100% {
        box-shadow: 0 0 20px rgba(8, 233, 221, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(8, 233, 221, 0.6);
    }
}

@keyframes glowSecond {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    }
}

@keyframes glowThird {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 220, 220, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(220, 220, 220, 0.6);
    }
}

.score-card:nth-child(1)::before,
.score-card:nth-child(2)::before,
.score-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.score-card:nth-child(1)::before {
    background: radial-gradient(circle at 50% 50%, rgba(8, 233, 221, 0.25), transparent 70%);
    animation: pulseBg 3s ease-in-out infinite;
}

.score-card:nth-child(2)::before {
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.2), transparent 70%);
    animation: pulseBg 3s ease-in-out infinite 0.5s;
}

.score-card:nth-child(3)::before {
    background: radial-gradient(circle at 50% 50%, rgba(220, 220, 220, 0.25), transparent 70%);
    animation: pulseBg 3s ease-in-out infinite 1s;
}

@keyframes pulseBg {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* Loading Container Styles */
.loading-container {
    position: relative;
    min-height: 100px;
}

.loading-spinner-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 242, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-cyan);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Fade in animation for content */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

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

/* Category-specific loading spinners */
.category-card:nth-child(1) .loading-spinner-small {
    border-color: rgba(112, 156, 149, 0.1);
    border-top-color: #709c95;
}

.category-card:nth-child(2) .loading-spinner-small {
    border-color: rgba(52, 152, 219, 0.1);
    border-top-color: #3498DB;
}

.category-card:nth-child(3) .loading-spinner-small {
    border-color: rgba(173, 20, 87, 0.1);
    border-top-color: #AD1457;
}

/* Category Cards Loading State */
.category-cards.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.category-cards:not(.loading) {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Button Animations */
.page-btn {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid rgba(0, 242, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 242, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none;
}

.page-btn:hover {
    border-color: var(--primary-cyan);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.page-btn:active {
    transform: scale(0.95) rotate(-5deg);
    background: rgba(0, 242, 255, 0.1);
    transition: all 0.1s ease;
}

.page-btn i {
    position: relative;
    z-index: 1;
    color: var(--primary-cyan);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-btn:hover i {
    transform: scale(1.2) translateX(2px);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.page-btn:active i {
    transform: scale(0.9) translateX(-2px);
}

/* Reverse transform for previous page button */
.page-btn:first-child:hover i {
    transform: scale(1.2) translateX(-2px);
}

.page-btn:first-child:active i {
    transform: scale(0.9) translateX(2px);
}

/* Back to Categories Button Animation */
.back-btn {
    position: relative;
    overflow: hidden;
}

.back-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 242, 255, 0.2),
        transparent
    );
    animation: loading-shine 1.5s infinite;
}

@keyframes loading-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.back-btn.loading {
    animation: back-btn-pulse 1.5s infinite;
}

@keyframes back-btn-pulse {
    0%, 100% {
        background: rgba(0, 242, 255, 0.1);
    }
    50% {
        background: rgba(0, 242, 255, 0.2);
    }
}

/* Category-specific colors */
/* Public */
.category-card:nth-child(1) {
    background: rgba(112, 156, 149, 0.03);
    border-color: rgba(112, 156, 149, 0.2);
}

.category-card:nth-child(1):hover {
    border-color: #709c95;
    box-shadow: 0 10px 30px rgba(112, 156, 149, 0.2);
}

.category-card:nth-child(1) .category-header h2 {
    color: #709c95;
    text-shadow: 0 0 10px rgba(112, 156, 149, 0.5);
}

.category-card:nth-child(1) .preview-player {
    background: rgba(112, 156, 149, 0.05);
}

.category-card:nth-child(1) .preview-player:hover {
    background: rgba(112, 156, 149, 0.1);
}

.category-card:nth-child(1) .preview-rank,
.category-card:nth-child(1) .preview-score {
    color: #709c95;
}

.category-card:nth-child(1) .preview-avatar {
    border-color: #709c95;
}

.category-card:nth-child(1) .category-footer {
    color: #709c95;
    border-top-color: rgba(112, 156, 149, 0.2);
}

/* VIP */
.category-card:nth-child(2) {
    background: rgba(52, 152, 219, 0.03);
    border-color: rgba(52, 152, 219, 0.2);
}

.category-card:nth-child(2):hover {
    border-color: #3498DB;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

.category-card:nth-child(2) .category-header h2 {
    color: #3498DB;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.category-card:nth-child(2) .preview-player {
    background: rgba(52, 152, 219, 0.05);
}

.category-card:nth-child(2) .preview-player:hover {
    background: rgba(52, 152, 219, 0.1);
}

.category-card:nth-child(2) .preview-rank,
.category-card:nth-child(2) .preview-score {
    color: #3498DB;
}

.category-card:nth-child(2) .preview-avatar {
    border-color: #3498DB;
}

.category-card:nth-child(2) .category-footer {
    color: #3498DB;
    border-top-color: rgba(52, 152, 219, 0.2);
}

/* Drift */
.category-card:nth-child(3) {
    background: rgba(173, 20, 87, 0.03);
    border-color: rgba(173, 20, 87, 0.2);
}

.category-card:nth-child(3):hover {
    border-color: #AD1457;
    box-shadow: 0 10px 30px rgba(173, 20, 87, 0.2);
}

.category-card:nth-child(3) .category-header h2 {
    color: #AD1457;
    text-shadow: 0 0 10px rgba(173, 20, 87, 0.5);
}

.category-card:nth-child(3) .preview-player {
    background: rgba(173, 20, 87, 0.05);
}

.category-card:nth-child(3) .preview-player:hover {
    background: rgba(173, 20, 87, 0.1);
}

.category-card:nth-child(3) .preview-rank,
.category-card:nth-child(3) .preview-score {
    color: #AD1457;
}

.category-card:nth-child(3) .preview-avatar {
    border-color: #AD1457;
}

.category-card:nth-child(3) .category-footer {
    color: #AD1457;
    border-top-color: rgba(173, 20, 87, 0.2);
}

/* Category-specific leaderboard colors */
.score-card {
    background: rgba(112, 156, 149, 0.03);
    border-color: rgba(112, 156, 149, 0.2);
}

.score-card .rank,
.score-card .score {
    color: #709c95;
}

/* VIP category */
[data-category="vip"] .score-card {
    background: rgba(52, 152, 219, 0.03);
    border-color: rgba(52, 152, 219, 0.2);
}

[data-category="vip"] .score-card .rank,
[data-category="vip"] .score-card .score {
    color: #3498DB;
}

/* Drift category */
[data-category="drift"] .score-card {
    background: rgba(173, 20, 87, 0.03);
    border-color: rgba(173, 20, 87, 0.2);
}

[data-category="drift"] .score-card .rank,
[data-category="drift"] .score-card .score {
    color: #AD1457;
}

/* Clean up the score-card styles to remove info button references */
.score-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(112, 156, 149, 0.03);
    border: 1px solid rgba(112, 156, 149, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.score-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(0, 242, 255, 0.2);
}

/* Remove all info button related selectors */
.info-btn,
.info-dropdown,
.dropdown-content,
.info-btn i,
[class*="info-"] {
    display: none;
}

/* Remove scattered users effect */
.score-category:has(.info-btn:hover) .score-card,
.score-card:has(.info-btn:hover),
.score-category:has(.info-btn:hover) .score-card:nth-child(even) {
    transform: none;
    opacity: 1;
    pointer-events: auto;
    z-index: auto;
    box-shadow: none;
}

/* Hide and seek animations */
.score-category:has(.score-info:hover) .score-card {
    --fly-x: random(-300px, 300px);
    --fly-y: random(-100px, 100px);
    --fly-rotate: random(-15deg, 15deg);
    transform: translate(var(--fly-x), var(--fly-y)) rotate(var(--fly-rotate)) scale(0.8);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.score-card {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translate(0, 0) rotate(0deg) scale(1);
}

/* Show info button on score hover */
.score:hover .score-info {
    opacity: 1;
}

/* Vertical separator for info button */
.score-info::before {
    display: none;
}

.score-info::after {
    display: none;
}

/* Random positions for hide and seek */
.score-card:nth-child(3n) { --fly-x: 2000px; --fly-y: -500px; --fly-rotate: 45deg; }
.score-card:nth-child(3n+1) { --fly-x: -2000px; --fly-y: 800px; --fly-rotate: -45deg; }
.score-card:nth-child(3n+2) { --fly-x: 2000px; --fly-y: 600px; --fly-rotate: 90deg; }
.score-card:nth-child(4n) { --fly-x: -2000px; --fly-y: -800px; --fly-rotate: -90deg; }
.score-card:nth-child(4n+1) { --fly-x: 2000px; --fly-y: -200px; --fly-rotate: 60deg; }
.score-card:nth-child(5n) { --fly-x: -2000px; --fly-y: 300px; --fly-rotate: -60deg; }

/* Hide and seek animations */
.score-info:hover ~ .scores-content .score-card {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.score-info:hover ~ .scores-content .score-card:nth-child(3n) { transform: translate(2000px, -500px) rotate(45deg) scale(0.8); }
.score-info:hover ~ .scores-content .score-card:nth-child(3n+1) { transform: translate(-2000px, 800px) rotate(-45deg) scale(0.8); }
.score-info:hover ~ .scores-content .score-card:nth-child(3n+2) { transform: translate(2000px, 600px) rotate(90deg) scale(0.8); }
.score-info:hover ~ .scores-content .score-card:nth-child(4n) { transform: translate(-2000px, -800px) rotate(-90deg) scale(0.8); }
.score-info:hover ~ .scores-content .score-card:nth-child(4n+1) { transform: translate(2000px, -200px) rotate(60deg) scale(0.8); }
.score-info:hover ~ .scores-content .score-card:nth-child(5n) { transform: translate(-2000px, 300px) rotate(-60deg) scale(0.8); }

.score-card {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translate(0, 0) rotate(0deg) scale(1);
}

/* Show info button on score hover */
.score:hover .score-info {
    opacity: 1;
}

/* Vertical separator for info button */
.score-info::before {
    display: none;
}

.score-info::after {
    display: none;
}

/* Random positions for hide and seek */
.score-card:nth-child(3n) { --fly-x: 2000px; --fly-y: -500px; --fly-rotate: 45deg; }
.score-card:nth-child(3n+1) { --fly-x: -2000px; --fly-y: 800px; --fly-rotate: -45deg; }
.score-card:nth-child(3n+2) { --fly-x: 2000px; --fly-y: 600px; --fly-rotate: 90deg; }
.score-card:nth-child(4n) { --fly-x: -2000px; --fly-y: -800px; --fly-rotate: -90deg; }
.score-card:nth-child(4n+1) { --fly-x: 2000px; --fly-y: -200px; --fly-rotate: 60deg; }
.score-card:nth-child(5n) { --fly-x: -2000px; --fly-y: 300px; --fly-rotate: -60deg; }

/* Top 3 styles for VIP section */
[data-category="vip"] .score-card:nth-child(1) {
    background: linear-gradient(90deg, rgba(8, 233, 221, 0.15), rgba(8, 233, 221, 0.05));
    border-color: rgba(8, 233, 221, 0.4);
    animation: glowFirst 3s ease-in-out infinite;
    position: relative;
}

[data-category="vip"] .score-card:nth-child(2) {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.03));
    border-color: rgba(255, 215, 0, 0.3);
    animation: glowSecond 3s ease-in-out infinite;
    position: relative;
}

[data-category="vip"] .score-card:nth-child(3) {
    background: linear-gradient(90deg, rgba(220, 220, 220, 0.15), rgba(220, 220, 220, 0.05));
    border-color: rgba(220, 220, 220, 0.4);
    animation: glowThird 3s ease-in-out infinite;
    position: relative;
}

[data-category="vip"] .score-card:nth-child(1) .rank,
[data-category="vip"] .score-card:nth-child(1) .score {
    color: #08e9dd;
    text-shadow: 0 0 10px rgba(8, 233, 221, 0.7);
}

[data-category="vip"] .score-card:nth-child(2) .rank,
[data-category="vip"] .score-card:nth-child(2) .score {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

[data-category="vip"] .score-card:nth-child(3) .rank,
[data-category="vip"] .score-card:nth-child(3) .score {
    color: #dcdcdc;
    text-shadow: 0 0 10px rgba(220, 220, 220, 0.7);
}

@keyframes glowFirst {
    0%, 100% {
        box-shadow: 0 0 20px rgba(8, 233, 221, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(8, 233, 221, 0.6);
    }
}

@keyframes glowSecond {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    }
}

@keyframes glowThird {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 220, 220, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(220, 220, 220, 0.6);
    }
}

/* Top 3 styles for Drift section */
[data-category="drift"] .score-card:nth-child(1) {
    background: linear-gradient(90deg, rgba(8, 233, 221, 0.15), rgba(8, 233, 221, 0.05));
    border-color: rgba(8, 233, 221, 0.4);
    animation: glowFirst 3s ease-in-out infinite;
    position: relative;
}

[data-category="drift"] .score-card:nth-child(2) {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.03));
    border-color: rgba(255, 215, 0, 0.3);
    animation: glowSecond 3s ease-in-out infinite;
    position: relative;
}

[data-category="drift"] .score-card:nth-child(3) {
    background: linear-gradient(90deg, rgba(220, 220, 220, 0.15), rgba(220, 220, 220, 0.05));
    border-color: rgba(220, 220, 220, 0.4);
    animation: glowThird 3s ease-in-out infinite;
    position: relative;
}

[data-category="drift"] .score-card:nth-child(1) .rank,
[data-category="drift"] .score-card:nth-child(1) .score {
    color: #08e9dd;
    text-shadow: 0 0 10px rgba(8, 233, 221, 0.7);
}

[data-category="drift"] .score-card:nth-child(2) .rank,
[data-category="drift"] .score-card:nth-child(2) .score {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

[data-category="drift"] .score-card:nth-child(3) .rank,
[data-category="drift"] .score-card:nth-child(3) .score {
    color: #dcdcdc;
    text-shadow: 0 0 10px rgba(220, 220, 220, 0.7);
}

 