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

:root {
    /* Exact colors from ProRevon */
    --color-primary: #D4AF37;       /* Gold */
    --color-secondary: #333333;     /* Dark Grey */
    --color-text-light: #FFF8E1;    /* Cream text */
    --color-text-muted: #EAEAEA;
    --color-border: rgba(212, 175, 55, 0.3);

    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    /* Background from the donor's hero block */
    background-color: #000000;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.56), rgba(212, 175, 55, 0.56)), 
        url("https://prorevongroup.com/wp-content/uploads/2025/11/bg01.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
    color: var(--color-text-light);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gateway-container {
    position: relative;
    z-index: 1;
    /* Glassmorphism dark card */
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 3.5rem 3rem;
    max-width: 460px;
    width: 92%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-border);
    animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
}

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

.gateway-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    line-height: 1.2;
}

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

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

.turnstile-wrapper {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cf-turnstile {
    margin: 0 auto;
}

.gateway-button {
    width: 100%;
    background: var(--color-primary);
    color: #000000;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.gateway-button:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
