html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #1a1035;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Widget de Turnstile: fuera del canvas de Compose, centrado y por encima de él.
   Sin reto pendiente está vacío y es invisible (no intercepta clics). */
#turnstile-host {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

#turnstile-host:empty {
    display: none;
}

/* Mensaje de carga que se muestra hasta que Compose monta la UI sobre <body>. */
#loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #c9bef0;
    font-size: 18px;
    letter-spacing: 1px;
}
