@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 6px rgba(0, 230, 118, 0.4);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
    }
}

@keyframes neon-glow {
    0%, 100% {
        text-shadow: 0 0 8px rgba(0, 229, 255, 0.4), 0 0 16px rgba(0, 229, 255, 0.2);
    }
    50% {
        text-shadow: 0 0 16px rgba(0, 229, 255, 0.6), 0 0 30px rgba(0, 229, 255, 0.3);
    }
}

@keyframes gold-shimmer {
    0%, 100% {
        text-shadow: 0 0 8px rgba(255, 171, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 16px rgba(255, 171, 0, 0.5);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes borderPulse {
    0%, 100% {
        border-color: rgba(0, 180, 255, 0.15);
    }
    50% {
        border-color: rgba(0, 180, 255, 0.35);
    }
}

.animate-neon {
    animation: neon-glow 3s ease-in-out infinite;
}

.animate-gold {
    animation: gold-shimmer 3s ease-in-out infinite;
}

.server-row {
    animation: fadeInUp 0.4s ease both;
}

.server-row:nth-child(1) { animation-delay: 0s; }
.server-row:nth-child(2) { animation-delay: 0.04s; }
.server-row:nth-child(3) { animation-delay: 0.08s; }
.server-row:nth-child(4) { animation-delay: 0.12s; }
.server-row:nth-child(5) { animation-delay: 0.16s; }
.server-row:nth-child(6) { animation-delay: 0.20s; }
.server-row:nth-child(7) { animation-delay: 0.24s; }
.server-row:nth-child(8) { animation-delay: 0.28s; }
.server-row:nth-child(9) { animation-delay: 0.32s; }
.server-row:nth-child(10) { animation-delay: 0.36s; }
.server-row:nth-child(11) { animation-delay: 0.40s; }
.server-row:nth-child(12) { animation-delay: 0.44s; }
.server-row:nth-child(13) { animation-delay: 0.48s; }
.server-row:nth-child(14) { animation-delay: 0.52s; }
.server-row:nth-child(15) { animation-delay: 0.56s; }

.rank-first {
    animation: borderPulse 4s ease-in-out infinite;
}