@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}
.glow {
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
}

.glow-secondary {
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.victory-glow {
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.7);
}

.defeat-glow {
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.7);
}

.battle-card {
    transition: all 0.3s ease;
}

.battle-card:hover {
    transform: translateY(-5px);
}
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

::-webkit-scrollbar-thumb {
    background: #0ea5e9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8b5cf6;
}