/* ===== Animations ===== */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 25px rgba(234, 179, 8, 0.2), 0 0 50px rgba(234, 179, 8, 0.1);
    }
    50% {
        box-shadow: 0 0 45px rgba(234, 179, 8, 0.45), 0 0 80px rgba(234, 179, 8, 0.25);
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.01);
    }
}

/* ===== Custom Classes ===== */
.premium-glow {
    animation: pulseGlow 3s infinite ease-in-out;
}

.floating-card {
    animation: subtleFloat 5s infinite ease-in-out;
}

/* ===== Sparkle Canvas Styling ===== */
#sparkle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
