.smp-auth-gate {
    --smp-auth-gate-text: #151515;
    --smp-auth-gate-muted: #5f6875;
    --smp-auth-gate-border: #e2e5e9;
    --smp-auth-gate-button: #2b2b2b;
    --smp-auth-gate-button-hover: #161616;
    box-sizing: border-box;
    font-family: inherit;
}
.smp-auth-gate *, .smp-auth-gate *::before, .smp-auth-gate *::after { box-sizing: border-box; }
.smp-auth-gate--inline {
    width: 100%;
    min-height: 300px;
    display: grid;
    place-items: center;
    padding: 48px 20px;
    background: transparent;
}
.smp-auth-gate--overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483500;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(17, 24, 39, .52);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.smp-auth-gate[hidden] { display: none !important; }
.smp-auth-gate__card {
    position: relative;
    width: min(420px, 100%);
    margin: 0;
    padding: 30px 30px 28px;
    border: 1px solid var(--smp-auth-gate-border);
    border-radius: 8px;
    background: #fff;
    color: var(--smp-auth-gate-text);
    text-align: center;
    box-shadow: 0 18px 55px rgba(15, 23, 42, .13);
}
.smp-auth-gate--inline .smp-auth-gate__card { box-shadow: 0 10px 30px rgba(15, 23, 42, .06); }
.smp-auth-gate__title {
    margin: 0;
    padding: 0;
    font-size: 20px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    color: var(--smp-auth-gate-text) !important;
}
.smp-auth-gate__body {
    margin: 12px 0 0;
    padding: 0;
    font-size: 14px !important;
    line-height: 1.55 !important;
    font-weight: 400 !important;
    color: var(--smp-auth-gate-muted) !important;
}
.smp-auth-gate__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    min-height: 42px;
    margin: 22px 0 0;
    padding: 10px 20px;
    border: 0;
    border-radius: 6px;
    background: var(--smp-auth-gate-button);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: background-color .16s ease, transform .16s ease;
}
.smp-auth-gate__button:hover, .smp-auth-gate__button:focus-visible {
    background: var(--smp-auth-gate-button-hover);
    color: #fff !important;
    text-decoration: none !important;
}
.smp-auth-gate__button:active { transform: translateY(1px); }
.smp-auth-gate__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #737b86;
    font: 400 22px/1 Arial, sans-serif;
    cursor: pointer;
}
.smp-auth-gate__close:hover, .smp-auth-gate__close:focus-visible { background: #f3f4f6; color: #111827; }
body.smp-auth-gate-open { overflow: hidden !important; }
@media (max-width: 600px) {
    .smp-auth-gate--inline { min-height: 260px; padding: 36px 16px; }
    .smp-auth-gate--overlay { padding: 14px; }
    .smp-auth-gate__card { padding: 27px 22px 24px; border-radius: 7px; }
    .smp-auth-gate__title { font-size: 19px !important; }
    .smp-auth-gate__body { font-size: 13px !important; }
}
@media (prefers-reduced-motion: reduce) {
    .smp-auth-gate__button { transition: none; }
}
