/* Visual Effects - Confetti and Radial Bursts Disabled */

/* Floating Glow Orbs */
.glow-orb {
    position: fixed;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
    animation: floatOrb 15s ease-in-out infinite;
    z-index: 1;
}

.glow-orb:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.glow-orb:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.glow-orb:nth-child(3) {
    bottom: 15%;
    left: 50%;
    animation-delay: 10s;
    animation-duration: 18s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -60px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.7;
    }
}

/* Neon Glow Grid Lines */
.neon-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}

.neon-grid::before,
.neon-grid::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.neon-grid::before {
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(0, 255, 0, 0.3) 50px,
            rgba(0, 255, 0, 0.3) 51px
        );
}

.neon-grid::after {
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(0, 255, 0, 0.3) 50px,
            rgba(0, 255, 0, 0.3) 51px
        );
}

/* Sparkle Effect */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00FF00;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 0, 1);
    animation: sparkleAnimation 1s ease-in-out;
    opacity: 0;
}

@keyframes sparkleAnimation {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* Celebration Burst - Disabled */

/* Ambient Light Rays */
.light-ray {
    position: fixed;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 255, 0, 0.2) 20%, 
        rgba(0, 255, 0, 0.4) 50%, 
        rgba(0, 255, 0, 0.2) 80%, 
        transparent 100%);
    pointer-events: none;
    animation: rayShift 20s ease-in-out infinite;
    opacity: 0.3;
}

.light-ray:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.light-ray:nth-child(2) {
    left: 50%;
    animation-delay: 7s;
}

.light-ray:nth-child(3) {
    left: 80%;
    animation-delay: 14s;
}

@keyframes rayShift {
    0%, 100% {
        transform: translateX(-10px) scaleY(0.8);
        opacity: 0.2;
    }
    50% {
        transform: translateX(10px) scaleY(1.2);
        opacity: 0.4;
    }
}

/* Hover Interaction Glow */
.interactive-glow {
    position: relative;
    overflow: visible;
}

.interactive-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease-out;
    pointer-events: none;
    z-index: -1;
}

.interactive-glow:hover::before {
    width: 200%;
    height: 200%;
}

/* Neon Pulse Ring */
.pulse-ring {
    position: absolute;
    border: 2px solid #00FF00;
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
    opacity: 0;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Glowing Trail Effect */
.glow-trail {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00FF00;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    animation: trailFade 0.8s ease-out forwards;
    pointer-events: none;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}
