/* ============================================================
   NAVBAR — Brand-Redesign (Discover-DNA)
   Echtes Schwarz als Canvas, aktiver Tab Periwinkle, restliche
   Tabs dezent grau. Outline-Icons (stroke=currentColor).
   Überschreibt modern.css (.custom-tab-bar ...) — wird in
   index.html NACH modern.css/discover-tab.css geladen.
   ============================================================ */

.custom-tab-bar {
  background: rgba(8, 9, 15, 0.9);
  backdrop-filter: saturate(140%) blur(22px);
  -webkit-backdrop-filter: saturate(140%) blur(22px);
  border-top: 1px solid var(--dsc-bd, rgba(165, 178, 255, 0.16));
}

/* Inaktive Tabs: dezent grau */
.custom-tab-bar .tab-item {
  color: var(--dsc-mut2, rgba(226, 229, 255, 0.42));
  transition: color 0.2s ease;
}

.custom-tab-bar .tab-item:hover {
  background: none;
}

/* Aktiver Tab: Periwinkle (Marken-Akzent), kein Zoom */
.custom-tab-bar .tab-item.active {
  color: #9AA6FF !important;
  transform: none;
}

/* Outline-Icons */
.custom-tab-bar .tab-item .tab-icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  transform: none;
}

.custom-tab-bar .tab-item.active .tab-icon {
  transform: none;
  filter: drop-shadow(0 0 8px rgba(123, 137, 255, 0.45));
}

.custom-tab-bar .tab-item .tab-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1px;
}
