/* ========================================================
   PRIMELUNO BRIDGE — Hero Background Design
   ======================================================== */

:root {
    /* Exact colors from Primeluno */
    --color-primary: #EA9912;       /* Orange/Amber */
    --color-secondary: #FEE13F;     /* Yellow */
    --color-bg-dark: #1E1F22;       /* Very Dark Grey */
    --color-text-light: #F5F6FA;
    --color-text-muted: #D1D5DB;
    --color-border: rgba(255, 255, 255, 0.1);

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

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

body {
    /* Background from the donor's hero block with their exact overlay */
    background-color: var(--color-primary);
    background-image: 
        linear-gradient(rgba(234, 153, 18, 0.75), rgba(234, 153, 18, 0.75)), 
        url("https://primelunoltd.com/wp-content/uploads/2025/08/Backgorund2.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 card to look good over the background image */
    background: rgba(30, 31, 34, 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-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-secondary);
}

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

.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: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 153, 18, 0.3);
}
