@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#root {
    min-height: 100vh;
}

.logo-topline {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

.logo-gradient {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.6em;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.3em;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(15 23 42);
}

::-webkit-scrollbar-thumb {
    background: rgb(51 65 85);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(71 85 105);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-out;
}

button {
    user-select: none;
}

button:focus-visible,
input:focus-visible {
    outline: 2px solid rgb(6 182 212);
    outline-offset: 2px;
}