/* ============================================================
   staff-gate.css — Coming Soon overlay for plugin library
   Blocks non-staff access to /our-plugins/ and sub-pages.
   ============================================================ */

#staff-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg, #05070a);
    background-image:
        radial-gradient(ellipse at 50% -10%, rgba(0, 229, 122, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 110%, rgba(77, 159, 255, 0.04) 0%, transparent 50%);
    font-family: var(--font-display, 'Rajdhani', sans-serif);
}

#staff-gate-overlay::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.staff-gate-card {
    position: relative;
    z-index: 1;
    max-width: 520px;
    width: 90%;
    padding: 48px 40px;
    background: var(--glass-surface, rgba(8, 11, 16, 0.82));
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.09));
    border-radius: var(--radius-lg, 14px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(24px);
    box-shadow: 0 0 60px rgba(0, 229, 122, 0.06);
}

.staff-gate-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 229, 122, 0.08);
    border: 1px solid rgba(0, 229, 122, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent, #00e57a);
    margin-bottom: 4px;
}

.staff-gate-title {
    font-family: var(--font-display, 'Rajdhani', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-pri, #eef2f7);
    line-height: 1.1;
}

.staff-gate-subtitle {
    font-family: var(--font-mono, 'Share Tech Mono', monospace);
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent, #00e57a);
    opacity: 0.7;
}

.staff-gate-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent, #00e57a), transparent);
    opacity: 0.4;
    margin: 8px 0;
}

.staff-gate-text {
    font-family: var(--font-body, 'Rajdhani', sans-serif);
    font-size: 0.95rem;
    color: var(--text-sec, #8fa8c0);
    line-height: 1.7;
    max-width: 400px;
}

.staff-gate-text strong {
    color: var(--text-pri, #eef2f7);
}



.staff-gate-footer {
    font-family: var(--font-mono, 'Share Tech Mono', monospace);
    font-size: 0.55rem;
    color: var(--text-dim, #2d3f50);
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.staff-gate-footer a {
    color: var(--text-muted, #516678);
    text-decoration: none;
    transition: color 0.15s;
}

.staff-gate-footer a:hover {
    color: var(--text-sec, #8fa8c0);
}

/* Authed state — hide overlay when staff user detected */
body.staff-authed #staff-gate-overlay {
    display: none !important;
}
