/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 18 2026 | 17:49:43 */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700&display=swap');

.title-bar-wrap {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  /* padding leicht angepasst, um optisch Platz zu den Linien zu schaffen */
  padding: 11px 0 7px 0; 
  /* Hintergrund auf das gewünschte Lila geändert */
  background-color: #BFB3FF; 
  /* Verhindert, dass Mobile-Browser die Größe eigenständig ändern */
  -webkit-text-size-adjust: 100%;
}

.title-bar-track {
  display: flex;
  width: max-content;
  align-items: center;
  will-change: transform;
  animation: title-bar-scroll linear infinite;
}

.title-bar-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #0A0A0A;
  line-height: 1;
}

.title-bar-dot {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  color: #0A0A0A;
  margin: 0 40px;
}

@keyframes title-bar-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}