/* Keyframes */
@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.8;
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Magical Particles System */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--ancient-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--ancient-gold);
    animation: floatParticle linear infinite;
}

.particle:nth-child(1) { left: 10%; top: 80%; animation-duration: 4s; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 90%; animation-duration: 5s; animation-delay: 1s; }
.particle:nth-child(3) { left: 50%; top: 75%; animation-duration: 3.5s; animation-delay: 2s; }
.particle:nth-child(4) { left: 70%; top: 85%; animation-duration: 6s; animation-delay: 0.5s; }
.particle:nth-child(5) { left: 90%; top: 80%; animation-duration: 4.5s; animation-delay: 1.5s; }
.particle:nth-child(6) { left: 20%; top: 60%; animation-duration: 5.5s; animation-delay: 0.2s; }
.particle:nth-child(7) { left: 60%; top: 70%; animation-duration: 4.2s; animation-delay: 1.8s; background: var(--mystic-teal); box-shadow: 0 0 10px var(--mystic-teal);}
.particle:nth-child(8) { left: 80%; top: 95%; animation-duration: 4.8s; animation-delay: 0.7s; }