.atlas-currency-bar {
  position: fixed;
  right: 16px;
  bottom: 120px;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
}

.atlas-currency-switcher {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.atlas-currency-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}

.atlas-currency-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.atlas-currency-btn {
  display: inline-block;
  min-width: 52px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.atlas-currency-btn:hover,
.atlas-currency-btn.is-active {
  background: #e9a31b;
  border-color: #e9a31b;
  color: #111;
}

.atlas-currency-btn.is-active {
  box-shadow: 0 0 0 2px rgba(233, 163, 27, 0.35);
}
