/* Overlay-Stil */
    #content-warning-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.95);
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      padding: 2rem;
    }

    #content-warning-box {
      max-width: 800px;
      background-color: #1a1a1a;
      padding: 2rem;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
      font-family: Arial, sans-serif;
    }

    #content-warning-box h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #ff4444;
    }

    #content-warning-box p {
      font-size: 1rem;
      margin: 0.5rem 0;
      line-height: 1.6;
    }

    #confirm-button {
      margin-top: 2rem;
      padding: 0.75rem 2rem;
      font-size: 1rem;
      background-color: #ff4444;
      border: none;
      color: white;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    #confirm-button:hover {
      background-color: #cc0000;
    }

    /* Body sperren, solange Overlay aktiv */
    body.overlay-active {
      overflow: hidden;
    }