/* Site-wide admin banners (maintenance, promos) — solid colors only */
.vortex-broadcast {
  position: relative;
  z-index: 3000;
  background: #0a0a0a;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 12px 48px 12px 16px;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.vortex-broadcast--maintenance {
  border-bottom-color: #f43f5e;
}

.vortex-broadcast--warning {
  border-bottom-color: #f59e0b;
}

.vortex-broadcast--promo {
  border-bottom-color: #ffffff;
}

.vortex-broadcast--info {
  border-bottom-color: #888888;
}

.vortex-broadcast__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: space-between;
}

.vortex-broadcast__text {
  flex: 1;
  min-width: 0;
}

.vortex-broadcast__title {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  margin-bottom: 4px;
}

.vortex-broadcast__body {
  margin: 0;
  opacity: 0.95;
}

.vortex-broadcast__dismiss {
  flex-shrink: 0;
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
}

.vortex-broadcast__dismiss:hover {
  background: #e5e5e5;
}
