/* Kuzaza brand strip — one look across news, dating and jobs.

   Deliberately self-contained: it sits above three different design systems
   (the news site is black/neon monospace, dating is light pink, jobs is
   light blue) and must not inherit from, or leak into, any of them. Keep
   this file byte-identical in the platform repo (dating/backend/static/brand/). */

.brandbar {
  background: #0a0a0a;
  color: #f0f0f0;
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 1px solid #39ff14;
}

.brandbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brandbar-logo {
  color: #39ff14;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .12em;
}

.brandbar-nav {
  display: flex;
  gap: 14px;
  flex: 1;
}

.brandbar-nav a {
  color: #888888;
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 2px solid transparent;
}

.brandbar-nav a:hover { color: #f0f0f0; }

.brandbar-nav a.active {
  color: #39ff14;
  border-bottom-color: #39ff14;
}

.brandbar-user {
  color: #888888;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.brandbar-user #brandbar-name { color: #f0f0f0; }

.brandbar-signin { color: #39ff14; text-decoration: none; white-space: nowrap; }

.brandbar-lang { display: flex; gap: 8px; }
.brandbar-lang a { color: #888888; text-decoration: none; }
.brandbar-lang a.active { color: #f0f0f0; }

@media (max-width: 560px) {
  .brandbar-inner { gap: 12px; padding: 6px 10px; }
  .brandbar-nav { gap: 10px; }
  .brandbar-user, .brandbar-signin { display: none; }
}
