/* Button Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.screen.active .btn,
.screen.active .lobby-small-btn,
.screen.active .cta-banner {
    animation: fadeInUp 0.5s ease-out backwards;
}

.screen.active .btn:nth-child(1) {
    animation-delay: 0.1s;
}

.screen.active .btn:nth-child(2) {
    animation-delay: 0.2s;
}

.screen.active .btn:nth-child(3) {
    animation-delay: 0.3s;
}

.screen.active .lobby-small-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.screen.active .lobby-small-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.screen.active .lobby-small-btn:nth-child(3) {
    animation-delay: 0.3s;
}

.screen.active .lobby-small-btn:nth-child(4) {
    animation-delay: 0.4s;
}