/* Main Styles */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glass-card {
    background: rgba(20, 20, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(240, 165, 0, 0.1);
    border-color: rgba(240, 165, 0, 0.3);
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.75rem;
}

.rank-1 {
    background: linear-gradient(135deg, #F0A500, #FFD700);
    color: #0a0a1a;
    box-shadow: 0 0 10px rgba(240, 165, 0, 0.5);
}

.rank-2 {
    background: linear-gradient(135deg, #C0C0C0, #E8E8E8);
    color: #0a0a1a;
}

.rank-3 {
    background: linear-gradient(135deg, #CD7F32, #E9967A);
    color: #0a0a1a;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background-color: #2ECC71;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.live-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2ECC71;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a1a;
}
::-webkit-scrollbar-thumb {
    background: #1e2a40;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #F0A500;
}
