body {
  margin: 0;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  background-color: black;
  color: white;
  user-select: none;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('bg.png') center center / cover no-repeat;
  z-index: -3;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(1px);
  z-index: -2;
}

.button {
	position:fixed;
	top:20px;
	left:20px;
	cursor: pointer;
  	font-family: 'Poppins', sans-serif;
	border:none;
	/*----*/
	font-size: 14px;
	padding:10px 20px;
	background:#ff5f6d;
	color:white;
	border-radius:8px;
	text-decoration:none;
	font-weight:bold;
	z-index:1000;
}

/* Spielfeld-Bereich */
#gameArea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.icon {
  position: absolute;
  height: 100px;
  cursor: pointer;
  z-index: 1000;
  filter: drop-shadow(0 0px 8px rgba(0, 0, 0, 0.8))
}

/* HUD */
#scoreboard {
  position: fixed;
  top: 20px;
  right: 20px;
	font-size: 14px;
	padding:10px 20px;
	background:#ff5f6d;
	color:white;
	border-radius:8px;
	text-decoration:none;
	font-weight:bold;
	z-index:1000;
}

#multiplierInfo {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 8px;
  z-index: 10;
  font-weight: bold;
}

#comboDisplay {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

/* Partikel */
.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ff5f6d;
  border-radius: 50%;
  animation: move 1s linear forwards;
  z-index: 5;
}

@keyframes move {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx), var(--dy));
    opacity: 0;
  }
}

/* Leaderboard */
#leaderboardContainer {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 12px 18px;
  z-index: 0;
  max-width: 300px;
}

#leaderboardContainer h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: white;
}

#leaderboardContainer ol {
  margin: 0;
  padding-left: 0px;
  color: white;
  font-size: 14px;
  line-height: 1.6;
}

#leaderboardContainer li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

#leaderboardContainer img {
  border-radius: 50%;
  margin-right: 8px;
}
