﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Noto+Sans+Devanagari:wght@400;500;600;700;800;900&family=Syne:wght@700;800;900&display=swap');

:root {
    --bg-dark: #060913;
    --bg-card: rgba(15, 23, 42, 0.78);
    --bg-card-solid: #0d1527;
    --border-card: rgba(255, 255, 255, 0.09);
    --border-card-glow: rgba(0, 230, 118, 0.3);
    
    --wa-from: #00E676;
    --wa-to: #008f39;
    --wa-shadow: rgba(0, 230, 118, 0.45);
    
    --tg-from: #00C6FF;
    --tg-to: #0072FF;
    --tg-shadow: rgba(0, 176, 255, 0.45);
    
    --gold-from: #FFD200;
    --gold-to: #FF8800;
    
    --emerald-neon: #00F298;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    -webkit-text-size-adjust: 100%;
}

.hindi-text {
    font-family: 'Noto Sans Devanagari', 'Plus Jakarta Sans', sans-serif;
}

.heading-font {
    font-family: 'Syne', 'Outfit', sans-serif;
}

/* Ambient Animated Glows */
.ambient-glow-top {
    position: fixed;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 520px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.16) 0%, rgba(0, 176, 255, 0.12) 45%, transparent 75%);
    pointer-events: none;
    z-index: 0;
    filter: blur(55px);
}

.ambient-glow-bottom {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 520px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 210, 0, 0.1) 0%, rgba(0, 230, 118, 0.08) 45%, transparent 75%);
    pointer-events: none;
    z-index: 0;
    filter: blur(45px);
}

/* Mobile Application Frame */
.app-container {
    width: 100%;
    max-width: 440px;
    min-height: 100vh;
    background-color: rgba(6, 9, 19, 0.96);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.85);
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

/* ================= 1. TOP STICKY BAR ================= */
.top-sticky-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, #013816 0%, #008f39 50%, #00C851 100%);
    color: #FFFFFF;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 18px rgba(0, 200, 81, 0.38);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.top-sticky-left {
    display: flex;
    align-items: center;
    gap: 7px;
}

.live-dot-wrap {
    position: relative;
    display: flex;
    width: 9px;
    height: 9px;
}

.live-dot-ping {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #FFEB3B;
    animation: ping-wave 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-dot-core {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #FFFFFF;
    box-shadow: 0 0 8px #FFEB3B;
}

@keyframes ping-wave {
    75%, 100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.top-sticky-right {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.28);
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 800;
}

.fire-icon {
    color: #FFD54F;
    animation: pulse-fire 1.1s infinite alternate;
}

@keyframes pulse-fire {
    0% { transform: scale(1); }
    100% { transform: scale(1.25); }
}

/* ================= 2. HERO SECTION ================= */
.hero-section {
    padding: 20px 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Avatar Logo with Neon Gradient Ring */
.logo-wrapper {
    position: relative;
    margin-bottom: 13px;
    display: inline-block;
}

.logo-ring {
    width: 96px;
    height: 96px;
    border-radius: 28px;
    background: linear-gradient(135deg, #FFD200 0%, #FF8800 50%, #00E676 100%);
    padding: 3.5px;
    box-shadow: 0 0 30px rgba(255, 210, 0, 0.35), 0 0 15px rgba(0, 230, 118, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ring-float 3.5s ease-in-out infinite alternate;
}

@keyframes ring-float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-4px); }
}

.logo-img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
    background-color: #0b1120;
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #00E676, #008f39);
    border: 2.5px solid var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
    box-shadow: 0 3px 10px rgba(0, 230, 118, 0.6);
}

.site-title {
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FFFFFF 20%, #FFD200 60%, #FF9100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    text-transform: capitalize;
}

/* Hindi Tagline Card */
.tagline-card {
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.14), rgba(0, 143, 57, 0.24));
    border: 1px solid rgba(0, 230, 118, 0.42);
    border-radius: 18px;
    padding: 13px 14px;
    margin-bottom: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.tagline-text {
    color: #F0FDF4;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.5;
}

/* Info Glass Card */
.info-card {
    width: 100%;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 12px 14px;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.info-line-1 {
    color: #F8FAFC;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.info-line-2 {
    color: #FFD200;
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.4;
}

/* Trust Stats Pill Row */
.stats-pills-row {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.stat-pill {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-pill-num {
    font-size: 13.5px;
    font-weight: 900;
    color: #00E676;
    letter-spacing: -0.2px;
}

.stat-pill-label {
    font-size: 9.5px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ================= 3. CTA BUTTONS SECTION ================= */
.cta-section {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

/* CTA Button Base */
.cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #FFFFFF;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-sizing: border-box;
}

.cta-btn:active {
    transform: scale(0.96) !important;
    filter: brightness(0.95);
}

/* Smooth 3D Shine Animation */
.shine-anim::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(
        80deg,
        rgba(255, 255, 255, 0) 25%,
        rgba(255, 255, 255, 0.35) 45%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.35) 55%,
        rgba(255, 255, 255, 0) 75%
    );
    transform: translateX(-150%) skewX(-25deg);
    animation: light-glimmer 2.8s infinite ease-in-out;
    pointer-events: none;
    z-index: 3;
}

@keyframes light-glimmer {
    0% { transform: translateX(-160%) skewX(-25deg); }
    40%, 100% { transform: translateX(180%) skewX(-25deg); }
}

/* WhatsApp Neon Button */
.btn-whatsapp {
    background: linear-gradient(135deg, #00F298 0%, #00C853 50%, #008f39 100%);
    border-bottom: 4px solid #005f24;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    animation: pulse-wa-neon 2.4s infinite ease-in-out;
}

@keyframes pulse-wa-neon {
    0%, 100% {
        box-shadow: 0 6px 22px rgba(0, 230, 118, 0.45), 0 0 10px rgba(0, 230, 118, 0.2);
    }
    50% {
        box-shadow: 0 10px 35px rgba(0, 230, 118, 0.88), 0 0 25px rgba(0, 242, 152, 0.6);
        transform: scale(1.015);
    }
}

/* Telegram Cyber Button */
.btn-telegram {
    background: linear-gradient(135deg, #00C6FF 0%, #0072FF 60%, #0052cc 100%);
    border-bottom: 4px solid #00368a;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    animation: pulse-tg-neon 2.4s infinite ease-in-out 0.6s;
}

@keyframes pulse-tg-neon {
    0%, 100% {
        box-shadow: 0 6px 22px rgba(0, 176, 255, 0.45), 0 0 10px rgba(0, 176, 255, 0.2);
    }
    50% {
        box-shadow: 0 10px 35px rgba(0, 176, 255, 0.88), 0 0 25px rgba(0, 198, 255, 0.6);
        transform: scale(1.015);
    }
}

.btn-left {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.btn-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FFFFFF;
    flex-shrink: 0;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 2px 8px rgba(0,0,0,0.2);
}

.btn-text-wrap {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9.5px;
    font-weight: 800;
    padding: 2.5px 8px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.btn-badge-wa {
    background-color: #E11D48;
    color: #FFFFFF;
    box-shadow: 0 2px 6px rgba(225, 29, 72, 0.4);
}

.btn-badge-tg {
    background-color: rgba(6, 40, 61, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #E0F2FE;
}

.badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #FFFFFF;
    animation: blink-dot 1s infinite alternate;
}

@keyframes blink-dot {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.btn-title {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.4px;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.btn-arrow-box {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    z-index: 2;
    animation: bounce-arrow 1.2s infinite ease-in-out;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

/* Countdown Bar */
.countdown-box {
    background: rgba(255, 210, 0, 0.08);
    border: 1px solid rgba(255, 210, 0, 0.3);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #FFD200;
    font-size: 12.5px;
    font-weight: 700;
}

.spinner-icon {
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.timer-highlight {
    background-color: #E11D48;
    color: #FFFFFF;
    padding: 1px 8px;
    border-radius: 6px;
    font-weight: 900;
    font-family: monospace;
    font-size: 13.5px;
}

/* ================= 4. LIVE WITHDRAWAL TOAST ================= */
.live-payout-ticker {
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(0, 230, 118, 0.35);
    border-radius: 14px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 16px 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: all 0.4s ease;
}

.payout-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00E676, #008f39);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #070913;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
}

.payout-content {
    display: flex;
    flex-direction: column;
    font-size: 11.5px;
    text-align: left;
}

.payout-line-top {
    color: #FFFFFF;
    font-weight: 700;
}

.payout-amount {
    color: #00E676;
    font-weight: 900;
}

.payout-line-sub {
    color: var(--text-secondary);
    font-size: 10px;
}

/* ================= 5. SCREENSHOTS PHONE MOCKUP SLIDER ================= */
.slider-section {
    padding: 0 16px;
    margin-bottom: 20px;
}

.slider-card {
    background: linear-gradient(180deg, #0f172a 0%, #070b16 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 16px 14px 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
}

.slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 0 4px;
}

.slider-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-badge {
    background: rgba(0, 230, 118, 0.15);
    border: 1px solid rgba(0, 230, 118, 0.4);
    color: #00F298;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 20px;
}

.slider-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 2px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

/* Phone Bezel Frame */
.phone-mockup {
    flex: 0 0 60%;
    max-width: 220px;
    scroll-snap-align: center;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.16);
    background: #020617;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    aspect-ratio: 9 / 16;
    display: flex;
    flex-direction: column;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    z-index: 5;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.swipe-hint {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ================= 6. HOW TO START 3-STEP GUIDE ================= */
.steps-section {
    padding: 0 16px;
    margin-bottom: 20px;
}

.steps-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 16px;
}

.steps-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 12px;
    border-radius: 14px;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD200, #FF8800);
    color: #070913;
    font-weight: 900;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content {
    font-size: 12.5px;
    font-weight: 700;
    color: #E2E8F0;
    line-height: 1.35;
}

/* ================= 7. BENEFITS SECTION ================= */
.benefits-section {
    padding: 0 16px;
    margin-bottom: 20px;
}

.benefits-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 16px;
}

.benefits-header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-card);
}

.benefits-icon-badge {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: rgba(0, 230, 118, 0.15);
    color: #00E676;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 230, 118, 0.2);
}

.benefits-title {
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.3px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 9, 15, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 11px 12px;
    border-radius: 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: #E2E8F0;
}

.benefit-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.2);
    color: #00E676;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 230, 118, 0.45);
}

/* ================= 8. FOOTER ================= */
.app-footer {
    padding: 10px 16px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
}

.footer-badge-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.copyright-text {
    font-size: 10.5px;
    color: var(--text-muted);
}
