
header .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.navbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 56px;
    max-width: var(--navbar-width);
    background: #000;
    padding: 12px 16px;
    text-align: center;
}

.navbar-inner h1 {
    margin: 0;
    font-weight: 900;
    font-size: 16px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.navbar-inner .text-super {
    background: linear-gradient(97deg, var(--green-1), var(--green-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

