/* ==========================================================================
   DIGITAL SAGAR — ULTRA CLEAN & LUXURY PREMIUM MOBILE THEME
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

:root {
    /* Base Backgrounds */
    --bg-body: #080C16;
    --bg-app: #0B1120;
    --bg-card: #111B2E;
    --bg-card-subtle: rgba(255, 255, 255, 0.03);
    
    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.15);
    
    /* Primary Action Colors */
    --wa-green-start: #00E676;
    --wa-green-end: #00A344;
    --tg-blue-start: #00A6FF;
    --tg-blue-end: #0066FF;
    
    /* Luxury Accents */
    --gold-accent: #F59E0B;
    --gold-glow: rgba(245, 158, 11, 0.25);
    --emerald-accent: #10B981;
    
    /* Text Hierarchy */
    --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-body);
    background-image: radial-gradient(circle at 50% 0%, #152238 0%, #080C16 70%);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', -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;
}

/* Central Mobile App Frame */
.app-container {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    background-color: var(--bg-app);
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
}

/* ================= 1. CLEAN TOP STATUS BAR ================= */
.top-status-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-subtle);
}

.status-left {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #E2E8F0;
}

.live-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10B981;
    box-shadow: 0 0 10px #10B981;
    animation: live-blink 1.8s infinite;
}

@keyframes live-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.status-right {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11px;
}

/* ================= 2. CLEAN LUXURY HERO SECTION ================= */
.hero-section {
    padding: 24px 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Clean Avatar with Polished Ring */
.avatar-container {
    position: relative;
    margin-bottom: 14px;
}

.avatar-ring {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #F59E0B 0%, #10B981 100%);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--bg-card);
}

.verified-icon {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    background: #0088FF;
    border: 2px solid var(--bg-app);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 11px;
    box-shadow: 0 2px 6px rgba(0, 136, 255, 0.4);
}

.site-name {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

/* Clean High-Converting Highlight Banner */
.highlight-banner {
    width: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(11, 27, 46, 0.8) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 13px 14px;
    margin-bottom: 12px;
}

.highlight-banner p {
    color: #E6FFFA;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.5;
}

/* Clean Info Box */
.info-box {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-box .line-1 {
    color: #F1F5F9;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.info-box .line-2 {
    color: #F59E0B;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.4;
}

/* Clean Trust Stats Grid */
.trust-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 9px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-value {
    font-size: 14px;
    font-weight: 800;
    color: #10B981;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* ================= 3. CLEAN & TACTILE ACTION BUTTONS ================= */
.action-buttons-group {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 16px;
    border-radius: 16px;
    text-decoration: none;
    color: #FFFFFF;
    overflow: hidden;
    transition: transform 0.15s ease, filter 0.2s ease;
    cursor: pointer;
}

.btn-action:active {
    transform: scale(0.97);
    filter: brightness(0.92);
}

/* Subtle, Polished Light Sweep */
.btn-action::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    animation: btn-sheen 3s infinite ease-in-out;
}

@keyframes btn-sheen {
    0% { left: -100%; }
    40%, 100% { left: 160%; }
}

/* WhatsApp Button */
.btn-whatsapp-theme {
    background: linear-gradient(135deg, var(--wa-green-start) 0%, var(--wa-green-end) 100%);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Telegram Button */
.btn-telegram-theme {
    background: linear-gradient(135deg, var(--tg-blue-start) 0%, var(--tg-blue-end) 100%);
    box-shadow: 0 6px 20px rgba(0, 166, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-content-left {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.btn-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.btn-texts {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-tag {
    font-size: 9px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 10px;
    width: fit-content;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-tag-wa {
    background: #DC2626;
    color: #FFFFFF;
}

.btn-tag-tg {
    background: rgba(0, 0, 0, 0.3);
    color: #BAE6FD;
}

.btn-heading {
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.btn-icon-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    z-index: 2;
}

/* Countdown Notice */
.redirect-notice {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 12px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #F59E0B;
    font-size: 12px;
    font-weight: 700;
}

.timer-tag {
    background: #DC2626;
    color: #FFFFFF;
    padding: 1px 7px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 13px;
    font-weight: 800;
}

/* ================= 4. LIVE WITHDRAWAL NOTIFICATION ================= */
.live-payout-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 16px 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.payout-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.payout-info {
    display: flex;
    flex-direction: column;
    font-size: 11.5px;
    text-align: left;
}

.payout-main {
    color: #FFFFFF;
    font-weight: 700;
}

.payout-amount-text {
    color: #10B981;
    font-weight: 800;
}

.payout-time-text {
    color: var(--text-secondary);
    font-size: 10px;
}

/* ================= 5. HOW TO EARN — 3 STEPS ================= */
.steps-card-section {
    padding: 0 16px;
    margin-bottom: 18px;
}

.clean-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 16px;
}

.clean-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-subtle);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.clean-steps-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.clean-step-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card-subtle);
    border: 1px solid var(--border-subtle);
    padding: 10px 12px;
    border-radius: 12px;
}

.step-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F59E0B;
    color: #080C16;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text {
    font-size: 12.5px;
    font-weight: 600;
    color: #E2E8F0;
    line-height: 1.35;
}

/* ================= 6. SCREENSHOTS CAROUSEL ================= */
.screenshots-section {
    padding: 0 16px;
    margin-bottom: 18px;
}

.clean-slider-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.clean-slider-track::-webkit-scrollbar {
    display: none;
}

.clean-phone-frame {
    flex: 0 0 60%;
    max-width: 210px;
    scroll-snap-align: center;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--border-highlight);
    background: #000000;
    aspect-ratio: 9 / 16;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-notch-bar {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3.5px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    z-index: 5;
}

.clean-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swipe-caption {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ================= 7. BENEFITS LIST ================= */
.benefits-section {
    padding: 0 16px;
    margin-bottom: 18px;
}

.clean-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    list-style: none;
}

.clean-benefit-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card-subtle);
    border: 1px solid var(--border-subtle);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: #E2E8F0;
}

.benefit-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ================= 8. CLEAN FOOTER ================= */
.clean-footer {
    padding: 8px 16px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-trust-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
}

.footer-copy {
    font-size: 10.5px;
    color: var(--text-muted);
}