html, body {
  margin: 0;
  padding: 0;
}

h1 {
  margin: 0;
  padding: 0;
}

.start_main_hintergrund {
  background-color: #f5f0e6;
  max-width: 1200px;
  margin: 0 auto; /* Zentriert das Element */
  padding: 0 0px; /* optionaler Innenabstand */
  margin-bottom: 0;
  overflow: hidden;
  display: block;
  text-align: center;
}

.start_main {
  position: relative; 
  top: 0em; 
  text-align: center;
}

#api_lfm_current_song1 {
  font-size: 20px;
  font-weight: bold;
}

#api_lfm_song_live {
  font-size: 20px;
  font-weight: bold;
}

.start_container_box {
  position: relative; /* Ermöglicht absolute Positionierung innerhalb des Containers */
  justify-content: flex-end;
  width: 98vw; /* Container erstreckt sich über die gesamte Breite */
  max-width: 1200px; /* Maximale Breite */
  height: 6.9em; /* Beispielhöhe */
  padding: 0px 6px; /* Innenabstand für kleinere Bildschirme */
}

.start_box1 {
  position: absolute;
  top: 10px;
  right: 23px; /* Abstand zum rechten Rand */
  width: 10%;
  height: 50px;
  border: 2px solid blue;
  padding: 0px 6px;
  background-color: lightblue;
  text-align: center;
  display: flex; /* Aktiviert Flexbox */
  justify-content: center; /* Horizontale Zentrierung */
  align-items: center; /* Vertikale Zentrierung */
  border-radius: 10px;
}

.start_box2 {
  position: absolute;
  top: 60px;
  right: 13px; /* Abstand zum rechten Rand */
  width: 10%;
  height: 50px;
  border: 0px solid blue;
  padding: 0px 6px;
  background-color: ;
  text-align: center;
  display: flex; /* Aktiviert Flexbox */
  justify-content: center; /* Horizontale Zentrierung */
  align-items: center; /* Vertikale Zentrierung */
  border-radius: 10px;
}

.start_box3 {
  position: absolute;
  top: 10px;
  right: 42.8%; /* Abstand zum rechten Rand */
  width: 55%;
  height: 86px;
  padding: 0px 6px; /* oben und unten: 0px, rechts und links: 2px */
  border: 2px solid blue;
  background-color: lightblue;
  display: grid;
  place-items: center; /* Zentriert horizontal und vertikal */
  border-radius: 10px;
}

.blink {
	animation: blink-animation 2s steps(2, start) infinite;
}

@keyframes blink-animation {
	50% {
		opacity: 0;
		}
    	}

.start_box4 {
  position: absolute;
  top: 10px;
  right: 22.8%; /* Abstand zum rechten Rand */
  width: 18%;
  height: 86px;
  border: 2px solid blue;
  padding: 0px 6px;
  background-color: lightblue;
  text-align: center;
  display: grid;
  place-items: center; /* Zentriert horizontal und vertikal */
  border-radius: 10px;
}

.start_box5 {
  position: absolute;
  top: 10px;
  right: 13.8%; /* Abstand zum rechten Rand */
  width: 7%;
  height: 86px;
  border: 2px solid blue;
  padding: 0px 6px;
  background-color: lightblue;
  text-align: center;
  display: grid;
  place-items: center; /* Zentriert horizontal und vertikal */
  border-radius: 10px;
}

.ticker-container {
  	overflow: hidden; /* Verhindert, dass der Inhalt über den Rand hinausgeht */
}

.ticker-container marquee {
	padding: 0px;
  	/* Keine direkten Abstände nötig, da das Padding der Elternelement-Box das regelt */
}

#api_lfm_current_song1 {
  	font-size: 2.5em;
  	font-weight: bold;
}

#api_lfm_song_live {
  	font-size: clamp(0.5rem, 2vw, 1.5rem);
  	font-weight: bold;
}

h1 {
  font-size: clamp(0.6rem, 5vw, 2.5rem); /* Mindestens 0.6rem, maximal 2.5rem */
}

.start_myButton {
  position: absolute;
  background-color: #f1c100; /* Gelb */
  color: black;
  right: 9.5%; /* Abstand zum rechten Rand */
  width: 100%;
  height: 30px;
  border: medium solid #784911; /* Optional: schmaler Rahmen Braun */
  border-radius: 5px; /* Optional: Abgerundete Ecken */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.start_myButton:hover {
  background-color: #ffda44;
}

/* --- NOWPLAYING: Container + Text --- */
#nowplaying-container {
    width: 100%;
    height: 40px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#nowplaying {
    display: inline-block;
    font-size: 2.2em;
    font-weight: bold;
    white-space: nowrap;
}

.scrolling {
    animation: marquee 12s linear infinite;
}

@keyframes marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

#status {
    font-size: 1.6em;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.dot.onair {
    background: #0f7d2b;
}

.dot.offline {
    background: #cc0000;
}
