.dw-page-shell .dw-topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  padding-top: 28px;
  transition: padding .22s ease, background .22s ease, backdrop-filter .22s ease, border-color .22s ease;
}

.dw-page-shell .dw-topbar.is-sticky-disabled {
  position: absolute;
}

.dw-page-shell .dw-topbar.is-scrolled:not(.is-sticky-disabled) {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(5, 5, 9, .74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.dw-page-shell .dw-topbar.is-glass-disabled.is-scrolled {
  background: rgba(5, 5, 9, .94);
  backdrop-filter: none;
}

.dw-page-shell .dw-topbar__inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
}

.dw-page-shell .dw-topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  justify-self: start;
}

.dw-page-shell .dw-topbar__logo {
  width: auto;
  height: 54px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 15px rgba(50,185,40,.35));
}

.dw-page-shell .dw-topbar__text-logo {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--dw-font);
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.02em;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}

.dw-page-shell .dw-topbar__text-logo span {
  color: #fff;
}

.dw-page-shell .dw-topbar__text-logo strong {
  color: var(--dw-green);
}

.dw-page-shell .dw-topbar__nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.dw-page-shell .dw-topbar__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0 15px;
  color: #fff;
  font-family: var(--dw-font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  white-space: nowrap;
}

.dw-page-shell .dw-topbar__nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--dw-green);
  box-shadow: var(--dw-shadow-green);
  transform: translateX(-50%);
  transition: width .2s ease;
}

.dw-page-shell .dw-topbar__nav-link:hover::after,
.dw-page-shell .dw-topbar__nav-link.is-active::after {
  width: 62px;
}

.dw-page-shell .dw-topbar__nav-link.is-active {
  color: var(--dw-green);
}

.dw-page-shell .dw-topbar__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1180px) {
  .dw-page-shell .dw-topbar__inner {
    grid-template-columns: auto 1fr auto;
  }

  .dw-page-shell .dw-topbar__nav {
    gap: 26px;
  }
}

@media (max-width: 920px) {
  .dw-page-shell .dw-topbar {
    padding-top: 14px;
  }

  .dw-page-shell .dw-topbar__inner {
    grid-template-columns: auto auto;
  }

  .dw-page-shell .dw-topbar__nav,
  .dw-page-shell .dw-live-button {
    display: none;
  }

  .dw-page-shell .dw-menu-toggle {
    display: flex;
  }

  .dw-page-shell .dw-topbar__text-logo {
    font-size: 23px;
  }

  .dw-page-shell .dw-topbar__logo {
    width: auto;
    height: 48px;
  }
}
