.header-v11 {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 0.7rem 1rem;
}

.header-v11 .logo {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  gap: 0.2rem;
  white-space: nowrap;
}

.header-v11 .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.header-v11 .menu a {
  color: inherit;
  text-decoration: none;
  font-size: 0.92rem;
}

.header-v11 .balance,
.header-v11 .status {
  font-weight: 700;
}

.header-v11 .burger-menu {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  flex-direction: column;
  gap: 4px;
}

.header-v11 .burger-menu span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.header-v11 .top-strip {
  max-width: 1280px;
  margin: 0 auto 0.45rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  opacity: 0.95;
}
.header-v11 .buttons { display: flex; gap: 0.55rem; }
.header-v11 .main-row {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
}
.header-v11 .menu ul { justify-content: center; }
@media (max-width: 980px) {
  .header-v11 .menu, .header-v11 .buttons { display: none; }
  .header-v11 .top-strip { margin-bottom: 0.2rem; }
  .header-v11 .main-row { grid-template-columns: 1fr auto; }
  .header-v11 .burger-menu { display: flex; justify-self: end; }
}
