.rys-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 12, 0.5);
    backdrop-filter: blur(var(--rys-gate-blur, 8px));
    -webkit-backdrop-filter: blur(var(--rys-gate-blur, 8px));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.rys-gate-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
body.rys-gate-locked {
    overflow: hidden;
}
.rys-gate-card {
    width: min(380px, 90vw);
    background: #17171b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 34px 28px 28px;
    text-align: center;
    color: #f2f2f4;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: translateY(8px) scale(0.98);
    transition: transform 0.25s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.rys-gate-overlay.is-open .rys-gate-card {
    transform: translateY(0) scale(1);
}
.rys-gate-logo {
    height: 30px;
    margin: 0 auto 20px;
    display: block;
}
.rys-gate-title {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.rys-gate-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 24px;
}
.rys-gate-buttons {
    display: flex;
    gap: 10px;
}
.rys-gate-btn {
    flex: 1;
    padding: 13px 10px;
    border-radius: 12px;
    border: none;
    font-size: 14px;
    font-weight: 650;
    cursor: pointer;
    transition: filter 0.15s ease;
}
.rys-gate-btn:hover {
    filter: brightness(1.08);
}
.rys-gate-exit-link {
    display: inline-block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12.5px;
    text-decoration: underline;
}
