/* ========================================================
   KIXY BRIDGE — Gateway Design System
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --color-primary: #0f172a;       /* Dark text / primary */
    --color-accent: #06b6d4;        /* Teal accent */
    --color-bg-deep: #ffffff;       /* White background */
    --color-text-light: #0f172a;    
    --color-text-muted: #64748b;
    --color-border: rgba(6, 182, 212, 0.2);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    /* Pure white background to match main site */
    background: var(--color-bg-deep);
    color: var(--color-text-light);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gateway-container {
    position: relative;
    z-index: 1;
    /* Light blue/teal block */
    background: rgba(6, 182, 212, 0.08); /* Very light blue */
    border-radius: 24px;
    padding: 3.5rem 3rem;
    max-width: 460px;
    width: 92%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border);
    animation: fadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 2rem;
    border: 1px solid var(--color-border);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(6, 182, 212, 0); }
    100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
}

.gateway-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-primary);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.gateway-title .text-accent {
    color: var(--color-accent);
}

.gateway-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.turnstile-wrapper {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    border: 1px solid var(--color-border);
}

.cf-turnstile {
    margin: 0 auto;
}

.gateway-button {
    width: 100%;
    background: var(--color-accent);
    color: #FFFFFF;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}

.gateway-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
    background: #0891b2;
}
