/* Unified Header Styles for Atena.one */
.unified-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.25);
  background: rgba(10, 14, 27, 0.95);
  backdrop-filter: blur(10px);
}

.unified-header .header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.unified-header .brand {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.unified-header .nav {
  display: flex;
  gap: 10px;
}

.unified-header .nav a {
  text-decoration: none;
  color: #00ffff;
  border: 1px solid rgba(0, 255, 255, 0.25);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.unified-header .nav a:hover {
  background: rgba(0, 255, 255, 0.08);
}

.unified-header .nav a.active {
  background: rgba(0, 255, 255, 0.15);
  border-color: #00ffff;
  font-weight: 600;
}
