.esafeSubscriberGate {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow: auto;
    background: rgba(8, 25, 42, 0.72);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.esafeSubscriberGateDialog {
    width: min(620px, 100%);
    margin: auto;
    padding: 32px;
    border: 1px solid #d4dee6;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(8, 25, 42, 0.3);
    color: #0f2330;
}

.esafeSubscriberGateDialog .eyebrow {
    margin: 0 0 8px;
    color: #8b1e2d;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
}

.esafeSubscriberGateDialog h1 {
    margin: 0 0 16px;
    color: #1e5476;
    font-family: "Source Sans 3", "Inter", system-ui, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.esafeSubscriberGateDialog p {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.esafeSubscriberGateActions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.esafeSubscriberGateActions .esafeButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid #cbd6df;
    border-radius: 6px;
    background: #f5f5f5;
    color: #5a6a75;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
}

.esafeSubscriberGateActions .esafeButton:hover,
.esafeSubscriberGateActions .esafeButton:focus-visible {
    border-color: #8b1e2d;
    outline: 0;
    background: #ffffff;
    color: #8b1e2d;
    box-shadow: 0 0 0 3px rgba(139, 30, 45, 0.1);
}

.esafeSubscriberGateActions .esafeButtonPrimary {
    border-color: #1e5476;
    background: #1e5476;
    color: #ffffff;
}

.esafeSubscriberGateReturn {
    display: inline-block;
    margin-top: 20px;
    color: #1e5476;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .esafeSubscriberGate {
        align-items: start;
        padding: 16px;
    }

    .esafeSubscriberGateDialog {
        margin-top: 64px;
        padding: 24px 20px;
    }

    .esafeSubscriberGateDialog h1 {
        font-size: 25px;
    }

    .esafeSubscriberGateActions {
        display: grid;
        grid-template-columns: 1fr;
    }
}
