    * {
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 20px;
      min-height: 100vh;
      background-image: url('BG.jpg');
      background-size: cover;
      background-attachment: fixed; /* <-- NEU: Hintergrund bleibt fixiert */
      background-position: center;  /* optional, für bessere Ausrichtung */
      background-repeat: no-repeat; /* optional, falls nötig */
      color: white;
      overflow-y: auto;
      position: relative;
    }

    .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* <- Helligkeit anpassen (0.5–0.7 ist gut) */
    z-index: 0;
  }

    .container {
      max-width: 800px;
      margin: auto;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
      z-index: 1;
      position: relative;
    }

    h1 {
      top: 50px; /* Platziert die Überschrift 50px oberhalb des Bildschirms */
      left: 50%; /* Zentriert sie horizontal */
      margin-bottom: 40px; /* Fügt Abstand zwischen der Überschrift und den Buttons hinzu */
      font-size: 56px; /* Vergrößert die Schrift der Überschrift */
      text-align: center; /* Zentriert die Überschrift */
      color: #e6cccc;
      }
  
      h4 {
        position: absolute; /* Entfernt das Element aus dem normalen Layoutfluss */
        top: 30px; /* Platziert die Überschrift 50px oberhalb des Bildschirms */
        left: 50%; /* Zentriert sie horizontal */
        transform: translateX(-50%); /* Korrektur der horizontalen Ausrichtung */
        font-size: 1rem; /* Vergrößert die Schrift der Überschrift */
        text-align: center; /* Zentriert die Überschrift */
        color: #e6cccc;
        }

    .player-input {
      margin-bottom: 10px;
    }

    label {
      display: block;
      margin-top: 10px;
      font-weight: bold;
    }

    .checkbox-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .checkbox-group label {
      flex: 1 1 45%;
    }

    input[type="text"],
    input[type="number"],
    select {
      width: 100%;
      padding: 8px;
      margin-top: 5px;
      border-radius: 6px;
      border: none;
    }

    button {
      width: 100%;
      padding: 15px;
      margin-top: 20px;
      background-color: #8a2be2;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background-color: #6d1ec5;
    }