#turnstile-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7); /* schwarz mit 70% Deckkraft */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* ganz oben */
  }

  #turnstile-box {
    width: 300px;
    height:200px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    text-align: center;
  }