#pag-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #0A0A0C;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

#pag-box {
    max-width: 460px;
    width: 100%;
    text-align: center;
    color: #EDE5DC;
}

#pag-logo {
    margin-bottom: 32px;
}

#pag-logo img {
    max-height: 52px;
    width: auto;
}

#pag-logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .04em;
    color: #EDE5DC;
}

#pag-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #A01020;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    color: #A01020;
    margin: 0 auto 20px;
    letter-spacing: 0;
}

#pag-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: .01em;
}

#pag-text {
    font-size: 14px;
    line-height: 1.6;
    color: #7A6A62;
    margin: 0 0 32px;
}

#pag-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pag-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity .15s, transform .1s;
    letter-spacing: .02em;
}

.pag-btn:active { transform: scale(.98); }

.pag-btn-primary {
    background: #A01020;
    color: #fff;
}

.pag-btn-primary:hover { opacity: .88; }

.pag-btn-secondary {
    background: transparent;
    color: #7A6A62;
    border: 1px solid #2a2a2a;
    font-size: 13px;
}

.pag-btn-secondary:hover { color: #EDE5DC; border-color: #555; }

#pag-disclaimer {
    font-size: 11px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

#pag-disclaimer a {
    color: #666;
    text-decoration: underline;
}

[hidden] { display: none !important; }
