html,
body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.main-navbar {
    width: 100%;
    background: #111111;

    border-bottom: 1px solid rgba(255,255,255,.08);

    position: sticky;
    top: 0;
    z-index: 999;

    margin: 0 0 34px 0;

    padding: 18px 0;

    backdrop-filter: blur(10px);
}

.navbar-inner {
    width: min(1150px, 94%);

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.navbar-left {
    display: flex;
    align-items: center;

    min-width: 0;
}

.brand {
    display:flex;
    align-items:center;
    gap:14px;

    text-decoration:none;
}

.brand-logo{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.brand-logo img{
    width:100%;
    height:100%;

    object-fit:contain;

    filter:
        drop-shadow(0 10px 20px rgba(0,0,0,.35));
}

.brand-name{
    font-size:42px;
    font-weight:900;
    color:#fff;

    line-height:1;
}

.navbar-right {
    display: flex;
    align-items: center;

    gap: 12px;
}

.nav-link {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 13px 20px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 14px;

    text-decoration: none;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    transition: .2s ease;

    white-space: nowrap;
}

.nav-link:hover {
    background: #ffffff;
    color: #111111;

    transform: translateY(-1px);
}

.nav-link.active {
    background: #ffffff;
    color: #111111;
}

.navbar-toggle {
    display: none;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 14px;

    background: rgba(255,255,255,.06);

    cursor: pointer;

    padding: 0;

    flex-shrink: 0;
}

.navbar-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    background: #ffffff;

    border-radius: 20px;

    margin: 5px auto;

    transition: .2s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media(max-width:900px) {

    .brand-name {
        font-size: 28px;
    }

}

@media(max-width:800px) {

    .main-navbar {
        margin-bottom: 22px;

        padding: 15px 0;
    }

    .navbar-inner {
        width: 92%;

        flex-wrap: wrap;
    }

    .brand {
        gap: 14px;
    }

    .brand-logo {
        width: 70px;
        height: 70px;
    }

    .brand-logo img {
        transform: scale(1.22);
    }

    .brand-name {
        font-size: 24px;

        letter-spacing: -0.5px;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-right {
        width: 100%;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 10px;

        margin-top: 18px;
        padding-top: 18px;

        border-top: 1px solid rgba(255,255,255,.10);
    }

    .navbar-right.open {
        display: flex;
    }

    .nav-link {
        width: 100%;

        justify-content: center;

        padding: 15px 18px;

        font-size: 15px;
    }
}

@media(max-width:500px) {

    .navbar-inner {
        width: 94%;
    }

    .brand-logo {
        width: 62px;
        height: 62px;
    }

    .brand-name {
        font-size: 21px;
    }

    .nav-link {
        font-size: 14px;
    }
}