.submit-button-animated:hover {

    animation-duration: 2s;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.submit-button-animated:active {

    transform: scale(0.98);
}

.submit-button-animated {

    background: linear-gradient(135deg, #dc2626 0%, #991b1b 25%, #7f1d1d 50%, #450a0a 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
    transition: all 0.3s ease;
}

@keyframes gradientShift {

    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.user-info-toggle-button {

    animation: pulseGlow 2s ease-in-out infinite;
    position: relative;
}

.user-info-toggle-button::after {

    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: pulseRing 2s ease-in-out infinite;
    z-index: -1;
}

.dark .user-info-toggle-button::after {

    background: rgba(31, 41, 55, 0.1);
}

.user-info-toggle-button:hover {

    animation-duration: 1s;
    transform: scale(1.05);
}

.user-info-toggle-button:hover::after {

    animation-duration: 1s;
}

.user-info-toggle-button:active {

    transform: scale(0.95);
}

@keyframes pulseGlow {

    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.2), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
}

.dark .user-info-toggle-button {

    animation: pulseGlowDark 2s ease-in-out infinite;
}

@keyframes pulseGlowDark {

    0%, 100% {
        box-shadow: 0 0 0 0 rgba(31, 41, 55, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(31, 41, 55, 0.2), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
}

@keyframes pulseRing {

    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.confetti-container {

    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.confetti {

    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    border-radius: 50%;
    animation: confettiFall linear infinite;
    opacity: 0.8;
}

@keyframes confettiFall {

    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes shimmer {

    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.animate-shimmer {

    animation: shimmer 2s linear infinite;
}

.prize-icon {

    animation: prizeFloat 3s ease-in-out infinite;
}

@keyframes prizeFloat {

    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(1.2);
        opacity: 1;
    }
}
