.arp-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99980;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.arp-nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.arp-nav-drawer {
  position: fixed;
  top: 14px;
  right: 14px;
  bottom: 14px;
  width: min(390px, calc(100vw - 28px));
  z-index: 99990;
  transform: translateX(calc(100% + 22px));
  transition: transform .22s ease;
  border: 1px solid rgba(246,198,91,.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(246,198,91,.16), transparent 34%),
    linear-gradient(180deg, rgba(14,22,37,.98), rgba(5,9,18,.98));
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  padding: 18px;
  overflow-y: auto;
}
.arp-nav-drawer.show {
  transform: translateX(0);
}
.arp-nav-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.arp-nav-head small {
  display: block;
  color: #f6c65b;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  margin-bottom: 5px;
}
.arp-nav-head strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}
.arp-nav-close {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}
.arp-nav-list {
  display: grid;
  gap: 11px;
}
.arp-nav-item {
  width: 100%;
  min-height: 72px;
  border: 1px solid rgba(246,198,91,.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(246,198,91,.08), transparent 36%),
    rgba(255,255,255,.035);
  color: #fff;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  text-align: left;
  padding: 12px;
  text-decoration: none;
}
.arp-nav-item:active {
  transform: scale(.99);
}
.arp-nav-ico {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(246,198,91,.09);
  border: 1px solid rgba(246,198,91,.18);
  font-size: 21px;
}
.arp-nav-item strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 3px;
}
.arp-nav-item small {
  display: block;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  line-height: 1.35;
}
.arp-nav-arrow {
  color: #f6c65b;
  font-size: 22px;
  font-weight: 900;
}
.arp-nav-foot {
  margin-top: 14px;
  border: 1px solid rgba(246,198,91,.12);
  border-radius: 18px;
  padding: 13px;
  color: rgba(255,255,255,.62);
  background: rgba(246,198,91,.045);
  font-size: 12.5px;
  line-height: 1.45;
}
@media (min-width: 760px) {
  .login-btn {
    display: inline-flex !important;
  }
}
