/**
 * WANTED ZONE - AUTHENTICATION ADVANCED 2027
 * Ultra Modern Authentication Design System
 * 
 * Features:
 * - Neural Network Background
 * - Liquid Glassmorphism
 * - Holographic Text Effects
 * - Quantum Particle System
 * - DNA Helix Animations
 * - Morphing Gradients
 * - Micro-interactions
 * - 3D Transforms
 */

/* ===============================================
   1. NEURAL NETWORK ANIMATED BACKGROUND
   =============================================== */
.wz-neural-bg {
    position: fixed;
    inset: 0;
    z-index: -3;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 15% 20%, rgba(138,43,226,0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 75%, rgba(96,165,250,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(168,85,247,0.15) 0%, transparent 45%),
        linear-gradient(180deg, #09090e 0%, #0d0d16 50%, #12121c 100%);
}

.wz-neural-nodes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* DNA Helix Animation */
.wz-dna-helix {
    position: fixed;
    left: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 180px;
    height: 100vh;
    z-index: -2;
    opacity: 0.08;
    animation: dnaFloat 20s ease-in-out infinite alternate;
}

@keyframes dnaFloat {
    0%, 100% { transform: translateY(-50%) rotate(-15deg) translateX(0); }
    50% { transform: translateY(-50%) rotate(-15deg) translateX(25px); }
}

.wz-dna-strand {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wz-dna-strand::before,
.wz-dna-strand::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(138,43,226,0.4) 20%,
        rgba(96,165,250,0.4) 40%,
        rgba(138,43,226,0.4) 60%,
        rgba(96,165,250,0.4) 80%,
        transparent
    );
    border-radius: 2px;
}

.wz-dna-strand::before {
    left: 30%;
    animation: dnaStrand1 4s ease-in-out infinite;
}

.wz-dna-strand::after {
    right: 30%;
    animation: dnaStrand2 4s ease-in-out infinite;
}

@keyframes dnaStrand1 {
    0%, 100% { transform: translateX(0) scaleY(1); }
    50% { transform: translateX(8px) scaleY(0.98); }
}

@keyframes dnaStrand2 {
    0%, 100% { transform: translateX(0) scaleY(1); }
    50% { transform: translateX(-8px) scaleY(0.98); }
}

/* ===============================================
   2. LIQUID GLASSMORPHISM CARDS
   =============================================== */
.wz-auth-card-2027 {
    position: relative;
    background: rgba(15, 15, 23, 0.65);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1.5px solid transparent;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(138,43,226,0.12);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    overflow: hidden;
}

/* Liquid Border Animation */
.wz-auth-card-2027::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        rgba(138,43,226,0.5) 0%,
        rgba(96,165,250,0.4) 25%,
        rgba(168,85,247,0.5) 50%,
        rgba(199,125,255,0.4) 75%,
        rgba(138,43,226,0.5) 100%
    );
    background-size: 300% 300%;
    border-radius: 24px;
    z-index: -1;
    animation: liquidBorder 8s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.5s;
}

.wz-auth-card-2027:hover::before {
    opacity: 1;
}

@keyframes liquidBorder {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

/* Holographic Shimmer Effect */
.wz-auth-card-2027::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(138,43,226,0.15) 45deg,
        transparent 90deg,
        rgba(96,165,250,0.12) 180deg,
        transparent 270deg,
        rgba(168,85,247,0.15) 315deg,
        transparent 360deg
    );
    animation: holoRotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
}

.wz-auth-card-2027:hover::after {
    opacity: 1;
}

@keyframes holoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===============================================
   3. QUANTUM RIPPLE EFFECTS
   =============================================== */
.wz-quantum-ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(138,43,226,0.8) 0%,
        rgba(138,43,226,0.4) 30%,
        transparent 70%
    );
    pointer-events: none;
    animation: quantumExpand 1.2s cubic-bezier(0, 0.5, 0, 1) forwards;
    z-index: 100;
}

@keyframes quantumExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

/* ===============================================
   4. ADVANCED INPUT FIELDS WITH LIQUID EFFECTS
   =============================================== */
.wz-liquid-input-group {
    position: relative;
    margin-bottom: 20px;
}

.wz-liquid-input {
    width: 100%;
    padding: 18px 16px 10px;
    background: rgba(25, 25, 38, 0.45);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(138,43,226,0.15);
    border-radius: 16px;
    color: #ede9f5;
    font-size: 0.95rem;
    font-family: 'Space Grotesk', sans-serif;
    outline: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.wz-liquid-input:focus {
    border-color: rgba(138,43,226,0.6);
    background: rgba(25, 25, 38, 0.65);
    box-shadow: 
        0 0 0 4px rgba(138,43,226,0.12),
        0 8px 24px rgba(138,43,226,0.25),
        inset 0 1px 0 rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

/* Liquid Label Animation */
.wz-liquid-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(154, 160, 184, 0.7);
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 0 6px;
    background: transparent;
    z-index: 2;
}

.wz-liquid-input:focus + .wz-liquid-label,
.wz-liquid-input:not(:placeholder-shown) + .wz-liquid-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    color: #8A2BE2;
    background: linear-gradient(to bottom, transparent 40%, rgba(15,15,23,0.95) 40%);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(138,43,226,0.4);
}

/* Input Glow Effect */
.wz-liquid-input:focus ~ .wz-input-glow {
    opacity: 1;
    transform: scaleX(1);
}

.wz-input-glow {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        #8A2BE2 20%,
        #c77dff 50%,
        #8A2BE2 80%,
        transparent
    );
    background-size: 200% 100%;
    border-radius: 0 0 16px 16px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.5s;
    animation: glowSlide 2s linear infinite;
}

@keyframes glowSlide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===============================================
   5. HOLOGRAPHIC SUBMIT BUTTON
   =============================================== */
.wz-holo-button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, 
        #8A2BE2 0%,
        #7b2cbf 50%,
        #8A2BE2 100%
    );
    background-size: 200% 200%;
    border: 2px solid rgba(199,125,255,0.3);
    border-radius: 16px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 24px rgba(138,43,226,0.35),
        inset 0 1px 0 rgba(255,255,255,0.15);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Liquid Wave Effect on Hover */
.wz-holo-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0%;
    height: 0%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent 70%);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.wz-holo-button:hover::before {
    width: 400%;
    height: 400%;
}

.wz-holo-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(138,43,226,0.5),
        0 0 40px rgba(138,43,226,0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
    background-position: 100% 50%;
    border-color: rgba(199,125,255,0.6);
}

.wz-holo-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Scanning Line Effect */
.wz-holo-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(255,255,255,0.15) 50%,
        transparent 60%
    );
    animation: scanLine 3s linear infinite;
    pointer-events: none;
}

@keyframes scanLine {
    0% { transform: translateY(-100%) rotate(45deg); }
    100% { transform: translateY(200%) rotate(45deg); }
}

/* ===============================================
   6. NEURAL PARTICLES CANVAS ENHANCEMENT
   =============================================== */
#neural-canvas {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.7;
}

/* ===============================================
   7. MORPHING BLOB BACKGROUND
   =============================================== */
.wz-morph-blob {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
    animation: blobMorph 15s ease-in-out infinite alternate;
}

.wz-morph-blob-1 {
    top: -200px;
    right: -200px;
    background: linear-gradient(135deg, 
        rgba(138,43,226,0.4), 
        rgba(96,165,250,0.3)
    );
    animation-delay: 0s;
}

.wz-morph-blob-2 {
    bottom: -200px;
    left: -200px;
    background: linear-gradient(135deg, 
        rgba(168,85,247,0.35), 
        rgba(199,125,255,0.3)
    );
    animation-delay: -7s;
}

@keyframes blobMorph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
        transform: rotate(15deg) scale(1.05);
    }
    50% {
        border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
        transform: rotate(-10deg) scale(0.95);
    }
    75% {
        border-radius: 30% 70% 60% 40% / 70% 40% 60% 30%;
        transform: rotate(20deg) scale(1.02);
    }
}

/* ===============================================
   8. QUANTUM CHECKBOX EFFECT
   =============================================== */
.wz-quantum-check {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(25, 25, 38, 0.35);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(138,43,226,0.15);
    border-radius: 14px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.wz-quantum-check::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(138,43,226,0.15),
        transparent
    );
    transition: width 0.5s;
}

.wz-quantum-check:hover {
    border-color: rgba(138,43,226,0.35);
    background: rgba(25, 25, 38, 0.5);
    transform: translateX(3px);
}

.wz-quantum-check:hover::before {
    width: 100%;
}

.wz-quantum-check input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(138,43,226,0.4);
    border-radius: 6px;
    background: rgba(25, 25, 38, 0.5);
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wz-quantum-check input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #8A2BE2, #c77dff);
    border-color: #8A2BE2;
    box-shadow: 0 0 15px rgba(138,43,226,0.6);
    animation: checkPulse 0.5s ease;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.wz-quantum-check input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    animation: checkmark 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0) rotate(-45deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

/* ===============================================
   9. FLOATING BADGES & CHIPS
   =============================================== */
.wz-float-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(138,43,226,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138,43,226,0.25);
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #c77dff;
    font-weight: 600;
    box-shadow: 
        0 4px 12px rgba(138,43,226,0.15),
        inset 0 1px 0 rgba(255,255,255,0.08);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.wz-float-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

/* ===============================================
   10. PASSWORD STRENGTH METER ADVANCED
   =============================================== */
.wz-strength-meter {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-top: 12px;
    height: 5px;
}

.wz-strength-bar {
    height: 100%;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wz-strength-bar.active {
    background: linear-gradient(90deg, 
        var(--strength-color, #8A2BE2), 
        var(--strength-glow, #c77dff)
    );
    box-shadow: 0 0 15px var(--strength-color, #8A2BE2);
    animation: strengthPulse 0.6s ease;
}

@keyframes strengthPulse {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.4); }
}

.wz-strength-bar.active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    animation: strengthShine 1.5s ease infinite;
}

@keyframes strengthShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* Strength colors */
.wz-strength-weak {
    --strength-color: #ef4444;
    --strength-glow: #ff6b6b;
}

.wz-strength-fair {
    --strength-color: #f59e0b;
    --strength-glow: #fbbf24;
}

.wz-strength-good {
    --strength-color: #10b981;
    --strength-glow: #34d399;
}

.wz-strength-strong {
    --strength-color: #8A2BE2;
    --strength-glow: #c77dff;
}

/* ===============================================
   11. RESPONSIVE GRID IMPROVEMENTS
   =============================================== */
.wz-auth-layout-2027 {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    padding: 48px 32px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .wz-auth-layout-2027 {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
    }
}

/* ===============================================
   12. MICRO-INTERACTIONS
   =============================================== */
.wz-micro-bounce {
    animation: microBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes microBounce {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(0.92); }
    60% { transform: scale(1.05); }
}

.wz-micro-shake {
    animation: microShake 0.5s ease;
}

@keyframes microShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* ===============================================
   13. GLITCH TEXT EFFECT (FOR ERRORS)
   =============================================== */
.wz-glitch-text {
    position: relative;
    animation: glitch 1s ease infinite;
}

.wz-glitch-text::before,
.wz-glitch-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.wz-glitch-text::before {
    color: #ff006e;
    animation: glitchBefore 0.5s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.wz-glitch-text::after {
    color: #00d4ff;
    animation: glitchAfter 0.7s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitchBefore {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
}

@keyframes glitchAfter {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(2px); }
}

/* ===============================================
   14. TOOLTIP ENHANCEMENTS
   =============================================== */
.wz-tooltip {
    position: relative;
}

.wz-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    padding: 8px 14px;
    background: rgba(18, 18, 28, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(138,43,226,0.3);
    border-radius: 10px;
    color: #ede9f5;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.wz-tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===============================================
   15. PERFORMANCE OPTIMIZATIONS
   =============================================== */
.wz-gpu-accelerated {
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

/* ===============================================
   16. ACCESSIBILITY IMPROVEMENTS
   =============================================== */
.wz-focus-visible:focus-visible {
    outline: 3px solid rgba(138,43,226,0.6);
    outline-offset: 4px;
    border-radius: 8px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ===============================================
   17. ENHANCED PARTICLE ANIMATIONS
   =============================================== */
@keyframes particleBurst {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 0.8;
        transform: translate(calc(var(--tx) * 0.6), calc(var(--ty) * 0.6)) scale(1.2) rotate(180deg);
    }
    100% {
        transform: translate(var(--tx, 0), var(--ty, 0)) scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* ===============================================
   18. FLOATING SPARKLES ANIMATION
   =============================================== */
.wz-sparkle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #fff, #8A2BE2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: sparkleFloat 2s ease-out forwards;
    box-shadow: 0 0 15px #8A2BE2, 0 0 30px rgba(138,43,226,0.5);
}

@keyframes sparkleFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0.2) rotate(360deg);
    }
}

/* ===============================================
   19. PULSING RING EFFECT
   =============================================== */
.wz-pulse-ring {
    position: fixed;
    border: 3px solid rgba(138,43,226,0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    animation: pulseRing 1.5s ease-out forwards;
}

@keyframes pulseRing {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
        border-width: 3px;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
        border-width: 0px;
    }
}

/* ===============================================
   20. RAINBOW GRADIENT BORDER
   =============================================== */
.wz-rainbow-border {
    position: relative;
    overflow: hidden;
}

.wz-rainbow-border::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(
        45deg,
        #8A2BE2, #60a5fa, #c77dff, #B085F5, #8A2BE2
    );
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: rainbowShift 3s ease infinite;
    filter: blur(8px);
}

@keyframes rainbowShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===============================================
   21. COSMIC DUST PARTICLES
   =============================================== */
.wz-cosmic-dust {
    position: fixed;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
    animation: cosmicFloat 8s linear infinite;
    box-shadow: 0 0 4px rgba(255,255,255,0.8);
}

@keyframes cosmicFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* ===============================================
   22. NEON GLOW TEXT
   =============================================== */
.wz-neon-text {
    color: #fff;
    text-shadow: 
        0 0 10px #8A2BE2,
        0 0 20px #8A2BE2,
        0 0 30px #8A2BE2,
        0 0 40px #c77dff,
        0 0 70px #c77dff,
        0 0 80px #c77dff,
        0 0 100px #c77dff;
    animation: neonFlicker 2s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow: 
            0 0 10px #8A2BE2,
            0 0 20px #8A2BE2,
            0 0 30px #8A2BE2,
            0 0 40px #c77dff,
            0 0 70px #c77dff,
            0 0 80px #c77dff,
            0 0 100px #c77dff;
    }
    50% {
        text-shadow: 
            0 0 5px #8A2BE2,
            0 0 10px #8A2BE2,
            0 0 15px #8A2BE2,
            0 0 20px #c77dff,
            0 0 35px #c77dff,
            0 0 40px #c77dff,
            0 0 50px #c77dff;
    }
}

/* ===============================================
   23. MATRIX RAIN EFFECT
   =============================================== */
.wz-matrix-rain {
    position: fixed;
    top: -100%;
    color: #8A2BE2;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
    animation: matrixFall 5s linear infinite;
    text-shadow: 0 0 5px #8A2BE2;
}

@keyframes matrixFall {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* ===============================================
   24. LIGHTNING STRIKE EFFECT
   =============================================== */
@keyframes lightningStrike {
    0%, 100% {
        box-shadow: 0 0 0 rgba(138,43,226,0);
    }
    10% {
        box-shadow: 0 0 30px rgba(138,43,226,1), 0 0 60px rgba(138,43,226,0.8);
    }
    20% {
        box-shadow: 0 0 0 rgba(138,43,226,0);
    }
    30% {
        box-shadow: 0 0 30px rgba(138,43,226,1), 0 0 60px rgba(138,43,226,0.8);
    }
    40% {
        box-shadow: 0 0 0 rgba(138,43,226,0);
    }
}

.wz-lightning {
    animation: lightningStrike 3s ease-in-out infinite;
}

/* ===============================================
   25. ENERGY FIELD EFFECT
   =============================================== */
.wz-energy-field {
    position: relative;
}

.wz-energy-field::after {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, transparent 30%, rgba(138,43,226,0.1) 70%);
    border-radius: inherit;
    animation: energyPulse 2s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes energyPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* ===============================================
   26. CYBER GRID BACKGROUND
   =============================================== */
.wz-cyber-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(138,43,226,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138,43,226,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -3;
    animation: gridScroll 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

/* ===============================================
   27. HOLOGRAPHIC SHIMMER ENHANCED
   =============================================== */
.wz-holo-shimmer {
    position: relative;
    overflow: hidden;
}

.wz-holo-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.1) 50%,
        transparent 70%
    );
    animation: holoShimmer 3s linear infinite;
}

@keyframes holoShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}
