/* assets/css/style.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

/* Gradients */
.bg-mesh {
    background-color: #050505;
    background-image: 
        radial-gradient(at 0% 0%, rgba(139, 92, 246, 0.15) 0, transparent 50%), 
        radial-gradient(at 100% 0%, rgba(6, 182, 212, 0.15) 0, transparent 50%);
}

/* Custom Selection */
::selection {
    background: rgba(139, 92, 246, 0.3);
    color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #1f1f1f;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2d2d2d;
}
