/* =========================================
   UR-RISK SOLUTIONS - CUSTOM STYLES
   ========================================= */

/* Prevent Alpine.js "blip" on load */
[x-cloak] { 
    display: none !important; 
}

/* Glassmorphism Navigation */
.glass { 
    background: rgba(26, 26, 31, 0.8); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}

/* Smooth Fade Transitions */
.fade-enter-active, .fade-leave-active { 
    transition: opacity 0.5s ease; 
}
.fade-enter-from, .fade-leave-to { 
    opacity: 0; 
}

/* Global Settings */
body { 
    user-select: none; /* Prevent text selection */
}

