@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
}

/* Custom Scrollbar - Pixel Pulse */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #00D4AA; /* Electric Teal - Pixel Pulse */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00b894;
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 170, 0.1);
}

/* Text Selection Color */
::selection {
    background: #00D4AA;
    color: #0a0e17;
}