/* BreachAlert — Turnstile challenge popup. Hidden until BATurnstile.ensure() opens it. */
.ba-ts-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(4px);
}

.ba-ts-overlay.is-open {
    display: flex;
}

.ba-ts-card {
    position: relative;
    width: 100%;
    max-width: 360px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 28px 24px 24px;
    text-align: center;
    box-shadow: 0 24px 60px -12px rgba(2, 6, 23, 0.7);
    color: #f8fafc;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ba-ts-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: 0;
    color: #94a3b8;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.ba-ts-close:hover {
    color: #f8fafc;
}

.ba-ts-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ba-ts-sub {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 18px;
}

.ba-ts-widget {
    display: flex;
    justify-content: center;
    min-height: 65px;
}
