.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-dark);
  transition: all 0.3s ease;
  padding: 16px 0;
}

.header.scrolled {
  background: rgba(1, 28, 64, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 40px;
  width: auto;
}

.header__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1.5px solid rgba(218, 165, 32, 0.6);
  border-radius: 50px;
  color: var(--gold-primary);
  background: rgba(218, 165, 32, 0.08);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .header__logo-img {
    height: 32px;
  }

  .header__badge {
    font-size: 0.7rem;
    padding: 4px 12px;
  }
}
