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

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

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

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

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

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

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

.header-v21 .bar {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
}
.header-v21 .content { display: flex; justify-content: space-between; gap: 0.9rem; align-items: center; }
.header-v21 .menu a {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  font-size: 0.8rem;
  overflow: hidden;
}
.header-v21 .actions { display: flex; gap: 0.5rem; align-items: center; }
@media (max-width: 980px) {
  .header-v21 .content { display: none; }
  .header-v21 .bar { grid-template-columns: 1fr auto; }
  .header-v21 .burger-menu { display: flex; justify-self: end; }
}
