/* ── NAVBAR ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2.5rem;
  height: 68px;
  background: rgba(10,11,22,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-title { color: var(--text); }

.nav-links {
  grid-column: 3;
  display: flex;
  justify-content: flex-end;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: .2rem .55rem;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  grid-column: 3;
  justify-self: end;
}

/* ── TICKER ───────────────────────────────────────── */
.ticker-wrap {
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  z-index: 99;
  overflow: hidden;
  background: linear-gradient(90deg, #7b00d4, #e8000d, #ff6a00, #ffd700, #ff6a00, #e8000d, #7b00d4);
  background-size: 200% 100%;
  animation: tickerBg 6s linear infinite;
  padding: .5rem 0;
  white-space: nowrap;
}

@keyframes tickerBg {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.ticker-track {
  display: inline-flex;
  gap: 3.5rem;
  animation: ticker 40s linear infinite;
}

.ticker-track span {
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
