

/* V2 Badge Styles */
.v2-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
    animation: v2-pulse 2s ease-in-out infinite;
}

@keyframes v2-pulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 204, 255, 0.6);
        transform: scale(1.05);
    }
}

.leaderboard-item:hover .v2-badge {
    animation: none;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.8);
}

/* V2 Section Indicator */
.v2-section {
    position: relative;
}

.v2-section::before {
    content: '⚡ V2 ONLY';
    position: absolute;
    top: -10px;
    right: 10px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}
