/* =====================================================
   Domina Fut - Custom Styles
   ===================================================== */

/* Logo Glow Animation */
@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(16, 185, 129, 0.7));
    }
}

.logo-glow {
    animation: glow 3s ease-in-out infinite;
}

/* Neon Digit Effect */
.neon-digit {
    text-shadow:
        0 0 10px rgba(16, 185, 129, 0.8),
        0 0 20px rgba(16, 185, 129, 0.4);
}

/* Optional: Smooth transitions for interactive elements */
button, a, input {
    transition: all 0.3s ease;
}

/* Optional: Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.7);
}

/* =====================================================
   Pop-up Animations
   ===================================================== */

/* Slide In Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.popup-animate {
    animation: slideIn 0.4s ease-out;
}

.success-icon {
    animation: pulse 1.5s ease-in-out infinite;
}
