@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

/* Global Styles */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
    background-color: #131313;
    color: #e5e2e1;
    font-family: 'Manrope', sans-serif;
}

/* Custom Utilities (complementing Tailwind) */
.hero-gradient {
    background: linear-gradient(to bottom, rgba(19, 19, 19, 0) 0%, rgba(19, 19, 19, 1) 100%);
}

.tonal-shift {
    background: linear-gradient(180deg, #131313 0%, #1c1b1b 100%);
}

.selection-primary::selection {
    background-color: #00d1ff;
    color: #003543;
}

.text-glow {
    text-shadow: 0 0 20px rgba(0, 209, 255, 0.4);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #353534;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3c494e;
}