body {
    font-family: 'Inter', sans-serif;
    background-color: #05020c;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(15, 10, 30, 0.4);
}
::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.4);
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
}

/* Premium glassmorphism utility classes */
.glass-panel {
    background: rgba(15, 10, 30, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.15);
}
.glass-panel-accent {
    background: rgba(139, 92, 246, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Pulsing glows */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    }
}
.active-glow {
    animation: pulse-glow 3s infinite;
}
