/* ==============================================================
   FREE V-BUCKS GENERATOR — Complete Stylesheet
   Dark Gaming Theme with Fortnite-inspired design
   ============================================================== */

/* ---------- CSS Reset ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Barlow', sans-serif;
    background: #0a0a1a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ---------- Background Effects ---------- */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 8s infinite ease-in-out;
}

#p1 { top: 10%; left: 5%; animation-delay: 0s; width: 6px; height: 6px; }
#p2 { top: 30%; left: 90%; animation-delay: 2s; }
#p3 { top: 60%; left: 15%; animation-delay: 4s; width: 3px; height: 3px; }
#p4 { top: 80%; left: 70%; animation-delay: 1s; }
#p5 { top: 45%; left: 50%; animation-delay: 3s; width: 5px; height: 5px; }
#p6 { top: 15%; left: 40%; animation-delay: 5s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.6; }
}

/* ---------- Cloaking ---------- */
#cloak-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cloak-container {
    text-align: center;
    padding: 2rem;
}

.cloak-container h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #666;
    margin-bottom: 1rem;
}

.cloak-container p {
    color: #444;
    font-size: 1.1rem;
}

/* ---------- Main Site ---------- */
#main-site {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* ---------- Step Base ---------- */
.step {
    display: none;
    width: 100%;
    max-width: 520px;
    animation: fadeIn 0.5s ease-out;
}

.step.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-inner {
    width: 100%;
    background: linear-gradient(145deg, rgba(20, 20, 40, 0.95), rgba(10, 10, 30, 0.98));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.step-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FF6B35, #FFD700);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---------- Step 1: Welcome ---------- */
.logo-area {
    text-align: center;
    margin-bottom: 1.5rem;
}

.vbuck-icon-large {
    display: inline-block;
    margin-bottom: 1rem;
    animation: pulseGold 2s infinite ease-in-out;
}

@keyframes pulseGold {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.6)); transform: scale(1.05); }
}

.main-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.subtitle {
    font-size: 1rem;
    color: #888;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ---------- Live Counter ---------- */
.live-counter {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.counter-label {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 0.3rem;
}

.counter-number {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: #FFD700;
    animation: countPulse 3s infinite ease-in-out;
}

@keyframes countPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ---------- USP List ---------- */
.usp-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-size: 0.95rem;
    color: #ccc;
    transition: background 0.2s;
}

.usp-item:hover {
    background: rgba(255, 215, 0, 0.05);
}

.usp-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ---------- Main Button ---------- */
.btn-main {
    position: relative;
    display: block;
    width: 100%;
    padding: 1.1rem 2rem;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #1a1a2e;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    overflow: hidden;
}

.btn-main:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.btn-main:active:not(.disabled) {
    transform: translateY(0);
}

.btn-main.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #333;
    color: #666;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: glowRotate 4s infinite linear;
    pointer-events: none;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-secondary {
    padding: 0.8rem 1.5rem;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

/* ---------- Trust Badges ---------- */
.trust-badges {
    text-align: center;
    margin-top: 1.5rem;
}

.badge {
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
}

.badge-star {
    font-size: 1.2rem;
    color: #FFD700;
    letter-spacing: 4px;
}

.badge-text {
    font-size: 0.8rem;
    color: #777;
}

.footer-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #555;
}

/* ---------- Step Header ---------- */
.step-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.step-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.95rem;
    color: #999;
}

.warning-text {
    color: #ff6b35;
}

.step-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-dot.active {
    background: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ---------- Step Back ---------- */
.step-back {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0.5rem;
}

.step-back:hover {
    color: #FFD700;
}

/* ---------- Step 2: Platform Grid ---------- */
.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.platform-card.selected {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

.platform-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ccc;
}

.platform-card.selected .platform-name {
    color: #FFD700;
}

/* ---------- Step 3: Amount Grid ---------- */
.amount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.amount-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1.2rem 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.amount-card.selected {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

.amount-card.popular {
    border-color: #FF6B35;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B35, #FF4500);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.amount-vbuck {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: #FFD700;
}

.amount-label {
    font-size: 0.8rem;
    color: #999;
}

.amount-price {
    font-size: 0.85rem;
    color: #00D26A;
    font-weight: 600;
}

.amount-card.selected .amount-vbuck {
    color: #fff;
}

/* ---------- Step 4: Input ---------- */
.input-area {
    position: relative;
    margin-bottom: 1rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.fancy-input {
    width: 100%;
    padding: 1.1rem 1rem 1.1rem 3rem;
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.fancy-input::placeholder {
    color: #555;
    font-weight: 400;
}

.fancy-input:focus {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.input-hint {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

/* ---------- Verification Bar ---------- */
.verification-bar {
    display: none;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.3s ease-out;
}

.verification-bar.active {
    display: block;
}

.verification-label {
    font-size: 0.85rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.verification-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.verification-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FFD700, #FF6B35);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* ---------- Step 5: Locker ---------- */
.locker-container {
    margin-bottom: 1rem;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
}

.locker-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.locker-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #888;
}

.locker-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 215, 0, 0.1);
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: spin 0.8s infinite linear;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.locker-instructions {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
}

.locker-instructions p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.locker-instructions ol {
    list-style: none;
    counter-reset: locker-counter;
}

.locker-instructions ol li {
    counter-increment: locker-counter;
    position: relative;
    padding: 0.3rem 0 0.3rem 1.5rem;
    color: #aaa;
    font-size: 0.85rem;
}

.locker-instructions ol li::before {
    content: counter(locker-counter);
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 20px;
    height: 20px;
    background: #FFD700;
    color: #1a1a2e;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Success Page ---------- */
.success-animation {
    text-align: center;
    margin-bottom: 1rem;
}

.success-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00D26A, #00B85A);
    border-radius: 50%;
    font-size: 2.5rem;
    color: #fff;
    animation: successPop 0.6s ease-out;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.success-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    text-align: center;
    color: #00D26A;
    margin-bottom: 0.5rem;
}

.success-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.success-subtitle strong {
    color: #FFD700;
}

.success-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.success-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.8rem;
    text-align: center;
}

.success-box-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.success-box-value {
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    color: #fff;
}

.success-box-value.status-processing {
    color: #00D26A;
}

/* ---------- Guide Section ---------- */
.guide-section {
    background: rgba(0, 210, 106, 0.05);
    border: 1px solid rgba(0, 210, 106, 0.15);
    border-radius: 14px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.guide-section h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    color: #00D26A;
    margin-bottom: 0.8rem;
}

.guide-section > p {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 1rem;
}

.guide-methods {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.guide-method {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 0.8rem 1rem;
}

.guide-method-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.3rem;
}

.guide-method-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #00D26A;
    color: #1a1a2e;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.guide-method-header strong {
    font-size: 0.95rem;
    color: #eee;
}

.guide-method p {
    font-size: 0.85rem;
    color: #888;
    margin-left: 2rem;
}

.guide-disclaimer {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    font-size: 0.8rem;
    color: #aaa;
    text-align: center;
}

/* ---------- Success Footer ---------- */
.success-footer {
    text-align: center;
}

.success-footer p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.referral-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

/* ---------- Responsive Tablet ---------- */
@media (min-width: 600px) {
    .step-inner {
        padding: 2.5rem 2rem;
    }

    .platform-grid,
    .amount-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .platform-card,
    .amount-card {
        padding: 1.5rem 1rem;
    }
}

/* ---------- Responsive Desktop ---------- */
@media (min-width: 900px) {
    .step {
        max-width: 600px;
    }

    .step-inner {
        padding: 3rem 2.5rem;
    }

    .platform-grid,
    .amount-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .success-details {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ---------- Mobile Small ---------- */
@media (max-width: 360px) {
    .platform-grid,
    .amount-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .step-inner {
        padding: 1.5rem 1rem;
    }

    .success-details {
        grid-template-columns: 1fr;
    }
}

/* ==============================================================
   URGENCY TIMER OVERLAY
   ============================================================== */
.urgency-overlay {
    animation: fadeIn 0.5s ease-out;
}

.urgency-content {
    text-align: center;
    padding: 1.5rem;
}

.urgency-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: pulseGold 2s infinite ease-in-out;
}

.urgency-icon.urgency-expired {
    animation: none;
}

.urgency-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #FF6B35;
    margin-bottom: 0.5rem;
}

.urgency-desc {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.urgency-timer {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.urgency-minutes,
.urgency-seconds {
    min-width: 2ch;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.urgency-separator {
    color: #555;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.urgency-sub {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.urgency-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.urgency-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B35, #FFD700);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* ==============================================================
   BONUS OFFER (Second Offer)
   ============================================================== */
.bonus-offer {
    text-align: center;
    padding: 1rem;
    animation: fadeIn 0.5s ease-out;
}

.bonus-offer-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    animation: pulseGold 2s infinite ease-in-out;
}

.bonus-offer-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.bonus-offer-desc {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.bonus-offer-reward {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.bonus-offer-plus {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: #00D26A;
}

.bonus-offer-amount {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #00D26A, #00E676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-offer-btn {
    margin-bottom: 0.8rem;
}

.bonus-offer-skip {
    background: none;
    border: none;
    color: #666;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
    display: block;
    width: 100%;
    text-align: center;
}

.bonus-offer-skip:hover {
    color: #aaa;
}

/* ==============================================================
   EMAIL CAPTURE
   ============================================================== */
.email-capture {
    text-align: center;
    padding: 0.5rem;
    animation: fadeIn 0.5s ease-out;
}

.email-capture-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.email-capture-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #00D26A;
    margin-bottom: 0.5rem;
}

.email-capture-desc {
    color: #aaa;
    font-size: 0.93rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.email-capture-form {
    margin-bottom: 0.8rem;
}

.email-capture-input-group {
    margin-bottom: 0.8rem;
}

.email-input {
    padding-left: 1rem !important;
    text-align: center;
    font-size: 1rem !important;
}

.email-capture-bonus {
    font-size: 0.8rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.email-capture-btn {
    margin-bottom: 0;
}

.email-capture-skip {
    background: none;
    border: none;
    color: #666;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.8rem;
}

.email-capture-skip:hover {
    color: #aaa;
}

/* ==============================================================
   LANGUAGE SWITCHER
   ============================================================== */
.lang-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 100;
    display: flex;
    gap: 0.3rem;
}

.lang-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.lang-btn.active {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    color: #FFD700;
}

/* ==============================================================
   LOADING OVERLAY (Funnel transitions)
   ============================================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    gap: 1rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.loading-overlay .locker-spinner {
    width: 50px;
    height: 50px;
}

.loading-overlay-text {
    font-size: 0.9rem;
    color: #aaa;
    animation: pulseGold 2s infinite ease-in-out;
}

/* ==============================================================
   SOCIAL PROOF — Live Notifications (bottom-left)
   ============================================================== */
#social-proof-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    max-width: 380px;
}

.social-notification {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(20, 20, 50, 0.95));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 10px 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 215, 0, 0.1);
    opacity: 0;
    transform: translateX(-30px) translateY(10px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.social-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #FFD700, #FFA500);
    border-radius: 3px 0 0 3px;
}

.social-notification.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.social-notif-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.social-notif-icon svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.3));
}

.social-notif-content {
    flex: 1;
    font-size: 0.82rem;
    line-height: 1.3;
    color: #ccc;
}

.social-notif-user {
    font-weight: 700;
    color: #fff;
    font-size: 0.85rem;
}

.social-notif-amount {
    font-weight: 800;
    color: #FFD700;
    white-space: nowrap;
}

.social-notif-time {
    display: block;
    font-size: 0.7rem;
    color: #888;
    margin-top: 1px;
}

.social-notif-close {
    background: none;
    border: none;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    padding: 2px 4px;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.social-notification:hover .social-notif-close {
    opacity: 1;
}

/* ==============================================================
   BONUS / UPSELL PAGE STYLES
   ============================================================== */

/* Bonus page — "DOUBLE YOUR REWARD" upsell */
.bonus-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a0a1a 70%);
}

.bonus-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(255,215,0,0.08);
}

.bonus-card .subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 8px;
}

.bonus-card h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-card .offer-badge {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #FFD700;
    margin-bottom: 20px;
}

.bonus-card .reward-highlight {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0;
}

.bonus-card .reward-label {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-bottom: 25px;
}

.bonus-card .progress-ring {
    margin: 0 auto 20px;
    width: 120px;
    height: 120px;
    position: relative;
}

.bonus-card .progress-ring svg {
    transform: rotate(-90deg);
}

.bonus-card .progress-ring .bg-circle {
    fill: none;
    stroke: rgba(255,255,255,0.08);
    stroke-width: 8;
}

.bonus-card .progress-ring .progress-circle {
    fill: none;
    stroke: #FFD700;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 1s ease;
}

.bonus-card .progress-ring .timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 800;
    color: #FFD700;
}

.bonus-card .timer-label {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.bonus-cta-btn {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0a0a1a;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 12px;
}

.bonus-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}

.bonus-cta-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.bonus-skip-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.2s;
}

.bonus-skip-btn:hover {
    color: rgba(255,255,255,0.6);
}

.bonus-card .features {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-card .features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.bonus-card .features .feature-item .check {
    color: #4CAF50;
}

/* Success badge on doubled reward */
.doubled-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 12px auto;
    padding: 10px 24px;
    background: rgba(255,215,0,0.12);
    border: 2px solid #FFD700;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    color: #FFD700;
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 10px rgba(255,215,0,0.2); }
    50% { box-shadow: 0 0 25px rgba(255,215,0,0.5); }
}

/* Mobile responsive */
@media (max-width: 480px) {
    #social-proof-container {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .social-notification {
        padding: 8px 12px;
    }
    
    .social-notif-content {
        font-size: 0.78rem;
    }
    
    .social-notif-user {
        font-size: 0.8rem;
    }
}
