.vaze-gated-modal-open {
    overflow: hidden;
}

.vaze-gated-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 9, 16, 0.78);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vaze-gated-modal {
    width: 100%;
    max-width: 520px;
    background: linear-gradient(180deg, #0a1320 0%, #111a28 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    padding: 32px 26px 24px;
    position: relative;
    color: #fff;
}

.vaze-gated-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.vaze-gated-modal-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8a85d;
    margin-bottom: 10px;
}

.vaze-gated-modal-head h3 {
    font-size: 34px;
    line-height: 1.08;
    margin: 0 0 12px;
    color: #f6f2ea;
}

.vaze-gated-modal-head p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    font-size: 15px;
}

.vaze-gated-modal-field {
    margin-bottom: 16px;
}

.vaze-gated-modal-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f0ece4;
}

.vaze-gated-modal-field label span {
    color: #c8a85d;
}

.vaze-gated-modal-field input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px 15px;
    font-size: 15px;
    outline: none;
}

.vaze-gated-modal-field input:focus {
    border-color: rgba(200, 168, 93, 0.55);
    box-shadow: 0 0 0 3px rgba(200, 168, 93, 0.12);
}

.vaze-gated-modal-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

.vaze-gated-modal-submit,
.vaze-gated-modal-skip {
    border: 0;
    border-radius: 14px;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 700;
}

.vaze-gated-modal-submit {
    background: #c8a85d;
    color: #111;
    flex: 1;
}

.vaze-gated-modal-skip {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.vaze-gated-modal-message {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.vaze-gated-modal-message.is-success {
    color: #97e7a8;
}

.vaze-gated-modal-message.is-error {
    color: #ff9a9a;
}

@media (max-width: 640px) {
    .vaze-gated-modal {
        padding: 28px 18px 20px;
        border-radius: 20px;
    }

    .vaze-gated-modal-head h3 {
        font-size: 28px;
    }

    .vaze-gated-modal-actions {
        flex-direction: column;
    }

    .vaze-gated-modal-submit,
    .vaze-gated-modal-skip {
        width: 100%;
    }
}