<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin: 0;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background-color: #000;
}

#blocker {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

#instructions {
  font-size: 24px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

#crosshair {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: red;
  font-size: 32px;
  z-index: 101;
  pointer-events: none;
}

#hud {
  position: fixed;
  top: 10px;
  left: 10px;
  color: #fff;
  font-size: 18px;
  z-index: 102;
  font-family: sans-serif;
  background: rgba(0,0,0,0.5);
  padding: 5px 10px;
  border-radius: 5px;
}

#hud span {
  display: inline-block;
  margin-right: 15px;
}

#waveAnnouncement {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: red;
  font-size: 48px;
  font-weight: bold;
  z-index: 103;
  display: none;
}

#waveTimer {
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  z-index: 106;
  display: none; /* Standard unsichtbar */
}

#respawnOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 104;
  color: white;
  font-size: 20px;
  font-family: sans-serif;
  flex-direction: column;
}

#respawnOverlay p {
  margin: 10px;
}

#namePrompt {
  margin: 10px;
}
#playerNameInput {
  padding: 5px;
  font-size: 16px;
}
#saveScoreBtn {
  padding: 5px 10px;
  margin-left: 10px;
  font-size: 16px;
  cursor: pointer;
}

#highscoreTable {
  margin: 20px auto;
  border-collapse: collapse;
  width: 60%;
  max-width: 600px;
}
#highscoreTable th,
#highscoreTable td {
  border: 1px solid #ccc;
  padding: 5px 10px;
  text-align: center;
}
#highscoreTable th {
  background-color: #444;
  color: #fff;
}


#playerCount {
  position: fixed;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 18px;
  z-index: 107;
  font-family: sans-serif;
  background: rgba(0,0,0,0.5);
  padding: 5px 10px;
  border-radius: 5px;
}

#footer {
  position: fixed;
  bottom: 5px;
  right: 10px;
  color: #fff;
  font-size: 14px;
  z-index: 105;
  opacity: 0.8;
}


#top3Board {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 250px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  z-index: 109;
  font-family: sans-serif;
  font-size: 14px;
}

#top3List {
  margin: 5px 0 0 15px;
  padding: 0;
  list-style: disc;
}
</pre></body></html>