/* ============================================================
   GLOBAL ANIMATION
   ============================================================ */

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradientFlow 12s ease infinite;
}

/* ==================== FADE ANIMATION ====================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    animation: fadeIn 1.2s ease forwards;
}

/* ==================== NEON GLOW EFFECTS ====================== */

.glow-cyan {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.glow-purple {
    box-shadow: 0 0 20px rgba(180, 0, 255, 0.3);
}

.glow-blue {
    box-shadow: 0 0 20px rgba(0, 140, 255, 0.3);
}

/* Universal neon glow for icons */
/* ===== SUPER NEON GLOW (MATCH ICON URL & FILE) ===== */

/* ==== FIX: Samakan Terang & Glow Icon TEXT ==== */




/* ==================== PARTICLE CANVAS ====================== */

#particleCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==================== CUSTOM SCROLLBAR ====================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00eaff, #7a00ff);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

/* ==================== GLASSMORPHISM ====================== */

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==================== BUTTON EFFECTS ====================== */

.button-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
}

.button-glow:active {
    transform: scale(0.96);
}

/* ==================== CARD HOVER SMOOTH ====================== */

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
}

/* ==================== RESPONSIVE ====================== */

@media (max-width: 768px) {
    .mobile-center {
        text-align: center;
    }
}
