#human-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
}

#human-gate.hidden {
    display: none;
}

.human-card {
    width: min(420px, 100%);
    padding: 32px 24px;
    border-radius: 20px;
    background: var(--bs-body-bg, #fff);
    color: var(--bs-body-color, #212529);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.human-card h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.human-card p {
    margin: 0 0 24px;
    opacity: 0.7;
}

#turnstile-container {
    min-height: 65px;
    display: flex;
    justify-content: center;
}

#human-status {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--bs-danger, #dc3545);
}

body.human-checking {
    overflow: hidden;
}