/* =========================================
   ANIMATIONS UI/UX - SIMPLIFIED & STABLE
   ========================================= */

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #9146FF, #007AFF);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* ===== SMOOTH TRANSITIONS ONLY ===== */
.btn, .btn-gaming, .btn-download, .glass-card, .feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover, .btn-gaming:hover, .btn-download:hover {
    transform: translateY(-3px) scale(1.02);
}

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

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
