.site-topbar {
  position: fixed;
  z-index: 50;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 28px));
  height: 68px;
  padding: 0 12px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #171714;
  border: 1px solid rgba(17, 17, 15, .1);
  border-radius: 22px;
  background: rgba(247, 243, 236, .84);
  box-shadow: 0 12px 34px rgba(37, 28, 16, .1);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-topbar.scrolled {
  height: 60px;
  background: rgba(247, 243, 236, .96);
  box-shadow: 0 16px 46px rgba(37, 28, 16, .14);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.site-brand img {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  background: #111;
  box-shadow: 0 5px 14px rgba(17, 17, 15, .16);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 30px);
  margin-left: auto;
  font-size: 12px;
  font-weight: 650;
  color: #59544c;
}

.site-nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: #b78329;
  transition: right .2s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}

.site-quiz-shortcut {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid #b78329;
  border-radius: 14px;
  background: #b78329;
  color: #17130e;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(126, 86, 21, .18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.site-topbar .site-quiz-shortcut:hover {
  color: #17130e;
  transform: translateY(-1px);
  background: #c59237;
  box-shadow: 0 14px 28px rgba(126, 86, 21, .24);
}

.site-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 14px;
  background: #11110f;
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(17, 17, 15, .14);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.site-store:hover {
  transform: translateY(-1px);
  background: #292823;
  box-shadow: 0 14px 28px rgba(17, 17, 15, .19);
}

.site-store .apple {
  font-size: 17px;
  line-height: 1;
}

.site-topbar a:focus-visible,
.site-topbar select:focus-visible {
  outline: 3px solid rgba(185, 135, 46, .58);
  outline-offset: 3px;
}

.skip:focus {
  z-index: 100;
}

body.site-header-offset {
  padding-top: 96px;
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .site-quiz-shortcut {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .site-topbar {
    top: 10px;
    height: 58px;
    padding: 0 8px 0 11px;
    gap: 9px;
    border-radius: 18px;
  }

  .site-topbar.scrolled {
    height: 58px;
  }

  .site-brand span {
    display: none;
  }

  .site-brand img {
    width: 34px;
    height: 34px;
  }

  .site-actions {
    gap: 7px;
  }

  .site-store {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 11px;
  }

  .site-quiz-shortcut {
    min-height: 38px;
    padding: 9px 10px;
    font-size: 11px;
  }

  body.site-header-offset {
    padding-top: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-topbar,
  .site-nav a::after,
  .site-store {
    transition: none;
  }
}
