body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #181825;
  color: #eee;
}
.crashbet-container {
  max-width: 640px;
  margin: 2rem auto;
  background: #23233a;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 16px #0004;
}
.controls {
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
}
#crashGraph {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
#multiplierDisplay {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin: 2rem 0;
}
#status {
  margin-top: 1rem;
  font-weight: bold;
}

#sky {
  position: relative;
  width: 100%;
  height: 400px; /* sichtbarer Bereich */
  overflow: hidden;
  border-radius: 12px;
  background: none;
}

#sky-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 11600px; /* GANZ WICHTIG: volle Bildhöhe */
  z-index: 0;
  transform: translateY(0);
  transition: transform 0.2s linear;
}


#plane {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px; /* bleibt immer unten */
  font-size: 3rem;
  z-index: 2;
}

#stars {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.7;
}