/* ===== FUTURISTIC EFFECTS STYLESHEET ===== */

/*
 * This file contains advanced CSS for the futuristic aesthetic,
 * including glassmorphism, neon glows, particle animations,
 * and complex hover effects.
 */

/* ===== GLASSMORPHISM ===== */
.glass {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ===== NEON GLOW ===== */
.neon-glow {
    text-shadow: 
        0 0 5px var(--color-primary),
        0 0 10px var(--color-primary),
        0 0 20px var(--color-primary);
    animation: neonPulse 2.5s infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow: 
            0 0 5px rgba(0, 212, 255, 0.8),
            0 0 10px rgba(0, 212, 255, 0.6),
            0 0 20px rgba(131, 56, 236, 0.4);
    }
    to {
        text-shadow: 
            0 0 10px rgba(0, 212, 255, 1),
            0 0 20px rgba(0, 212, 255, 0.8),
            0 0 30px rgba(131, 56, 236, 0.6);
    }
}

/* ===== PARTICLE BACKGROUND ===== */
#particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    bottom: -10px;
    background-color: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

/* Generate 30 particles with random positions, sizes, and animation delays */
.particle:nth-child(1) { left: 15%; width: 2px; height: 2px; animation-duration: 25s; animation-delay: -3s; }
.particle:nth-child(2) { left: 82%; width: 1px; height: 1px; animation-duration: 18s; animation-delay: -15s; }
.particle:nth-child(3) { left: 50%; width: 3px; height: 3px; animation-duration: 30s; animation-delay: -7s; }
.particle:nth-child(4) { left: 95%; width: 2px; height: 2px; animation-duration: 22s; animation-delay: -2s; }
.particle:nth-child(5) { left: 5%; width: 1px; height: 1px; animation-duration: 28s; animation-delay: -18s; }
.particle:nth-child(6) { left: 33%; width: 2px; height: 2px; animation-duration: 19s; animation-delay: -9s; }
.particle:nth-child(7) { left: 67%; width: 1px; height: 1px; animation-duration: 24s; animation-delay: -12s; }
.particle:nth-child(8) { left: 21%; width: 3px; height: 3px; animation-duration: 32s; animation-delay: -1s; }
.particle:nth-child(9) { left: 75%; width: 2px; height: 2px; animation-duration: 20s; animation-delay: -14s; }
.particle:nth-child(10) { left: 42%; width: 1px; height: 1px; animation-duration: 26s; animation-delay: -5s; }
.particle:nth-child(11) { left: 88%; width: 2px; height: 2px; animation-duration: 17s; animation-delay: -11s; }
.particle:nth-child(12) { left: 10%; width: 1px; height: 1px; animation-duration: 29s; animation-delay: -19s; }
.particle:nth-child(13) { left: 58%; width: 3px; height: 3px; animation-duration: 35s; animation-delay: -4s; }
.particle:nth-child(14) { left: 29%; width: 2px; height: 2px; animation-duration: 21s; animation-delay: -16s; }
.particle:nth-child(15) { left: 71%; width: 1px; height: 1px; animation-duration: 23s; animation-delay: -8s; }
.particle:nth-child(16) { left: 3%; width: 2px; height: 2px; animation-duration: 16s; animation-delay: -13s; }
.particle:nth-child(17) { left: 92%; width: 1px; height: 1px; animation-duration: 31s; animation-delay: -6s; }
.particle:nth-child(18) { left: 45%; width: 3px; height: 3px; animation-duration: 38s; animation-delay: 0s; }
.particle:nth-child(19) { left: 63%; width: 2px; height: 2px; animation-duration: 20s; animation-delay: -17s; }
.particle:nth-child(20) { left: 18%; width: 1px; height: 1px; animation-duration: 27s; animation-delay: -10s; }
.particle:nth-child(21) { left: 85%; width: 2px; height: 2px; animation-duration: 22s; animation-delay: -20s; }
.particle:nth-child(22) { left: 38%; width: 1px; height: 1px; animation-duration: 18s; animation-delay: -1s; }
.particle:nth-child(23) { left: 55%; width: 3px; height: 3px; animation-duration: 33s; animation-delay: -9s; }
.particle:nth-child(24) { left: 8%; width: 2px; height: 2px; animation-duration: 26s; animation-delay: -14s; }
.particle:nth-child(25) { left: 98%; width: 1px; height: 1px; animation-duration: 19s; animation-delay: -4s; }
.particle:nth-child(26) { left: 25%; width: 2px; height: 2px; animation-duration: 24s; animation-delay: -11s; }
.particle:nth-child(27) { left: 78%; width: 1px; height: 1px; animation-duration: 21s; animation-delay: -18s; }
.particle:nth-child(28) { left: 51%; width: 3px; height: 3px; animation-duration: 40s; animation-delay: -3s; }
.particle:nth-child(29) { left: 35%; width: 2px; height: 2px; animation-duration: 23s; animation-delay: -15s; }
.particle:nth-child(30) { left: 65%; width: 1px; height: 1px; animation-duration: 28s; animation-delay: -8s; }


/* ===== GLOW EFFECTS ===== */
.glow-primary {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.glow-secondary {
    box-shadow: 0 0 20px rgba(131, 56, 236, 0.3);
}

/* ===== LOADING SKELETON ===== */
.skeleton {
    opacity: 0.7;
    border-radius: 8px;
    background: linear-gradient(90deg, 
        var(--bg-card) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        var(--bg-card) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
    from {
        background-position: 200% 0;
    }
    to {
        background-position: -200% 0;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
    background: rgba(10, 10, 15, 0.5);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}