@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;700;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A0B;
    color: white;
    -webkit-font-smoothing: antialiased;
}

.animate-spin-slow {
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.selection-white::selection {
    background: white;
    color: black;
}

.glass {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-transition {
    transition: opacity 0.5s ease-in-out;
}

.hidden {
    display: none;
}
