@import url('https://fonts.googleapis.com/css2?family=Bitcount+Grid+Single:wght@100..900&family=Zalando+Sans+SemiExpanded:ital,wght@0,200..900;1,200..900&display=swap');

:root {
    --header-height: 64px;
    --primary-color: #902de2;
    --navbar-color: #0C0F1E;
    --background-color: #121212;
    --text-color: #eeeeee;
    --text-color-grayed: #999999;
    --button-background: #1e1e1e;
    --button-hover: #333333;
}

body,
html {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
}

header {
    position: fixed;
    display: flex;
    width: calc(100% - 40px);
    justify-content: space-between;
    align-items: center;
    top: 0;
    z-index: 1000;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    backdrop-filter: blur(5px);
}

header img#logo {
    height: 60px;
    margin: 2px;
}

header .header-title {
    font-size: 24px;
    font-family: 'Bitcount Grid Single', sans-serif;
    vertical-align: middle;
    text-decoration: none;
    color: var(--text-color);
}

header .header-right {
    display: flex;
    gap: 30px;
}

.header-right a.header-nav {
    color: var(--text-color);
    font-family: 'Bitcount Grid Single', sans-serif;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: all 0.2s;
    border-bottom: 2px dotted transparent;
}

.header-right a.header-nav.active {
    border-bottom: 2px dotted var(--text-color-grayed);
}

.header-right a.header-nav:hover {
    border-bottom: 2px dotted var(--text-color);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

@media (max-width: 600px) {
    .mobile-hide {
        display: none;
    }

    header {
        width: calc(100% - 20px);
        padding: 0 10px;
    }

    header .header-right {
        gap: 15px;
    }

    .cta-container {
        gap: 12px;
        width: 80%;
    }
}