/* ==========================================================================
   COINCRAZE ELITE DESIGN SYSTEM - VANILLA CSS (BULLETPROOF & MOBILE-FIRST)
   ========================================================================== */

:root {
    --bg-main: #07090e;
    --bg-card: rgba(18, 24, 38, 0.65);
    --bg-glass: rgba(25, 33, 54, 0.45);
    --border-glass: rgba(255, 215, 0, 0.18);
    --border-light: rgba(255, 255, 255, 0.08);
    --gold-primary: #ffd700;
    --gold-gradient: linear-gradient(135deg, #fff066, #ffaa00);
    --emerald: #00e676;
    --cyber-purple: #9d4edd;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

/* Global Hyperlink Protection (Prevents Browser Default Blue Links) */
a, a:hover, a:active, a:visited {
    text-decoration: none !important;
    outline: none !important;
}

html, body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Ambient Cyber Glows */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.28;
    pointer-events: none;
}
.glow-gold {
    width: 450px;
    height: 450px;
    background: var(--gold-primary);
    top: -100px;
    left: -100px;
}
.glow-purple {
    width: 500px;
    height: 500px;
    background: var(--cyber-purple);
    top: 35%;
    right: -150px;
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 9, 14, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 14px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}
.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}
.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.5px;
}
.gold-text {
    color: var(--gold-primary) !important;
}
.badge-pro {
    background: var(--gold-gradient) !important;
    color: #000000 !important;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 32px;
}
.nav-link-item {
    color: var(--text-muted) !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-link-item:hover {
    color: var(--gold-primary) !important;
}

/* Header Download Button (Bulletproof Styling) */
.nav-dl-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #fff066, #ffaa00) !important;
    color: #000000 !important;
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
}
.nav-dl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5) !important;
}
.dl-text {
    color: #000000 !important;
    font-weight: 800 !important;
}

/* ==========================================================================
   LIVE WINNERS TICKER
   ========================================================================== */
.ticker-bar {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), rgba(0, 230, 118, 0.1));
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 38px;
}
.ticker-label {
    background: var(--gold-primary);
    color: #000;
    font-weight: 900;
    font-size: 0.75rem;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 5px 0 15px rgba(0,0,0,0.5);
}
.ticker-track {
    display: flex;
    overflow: hidden;
    width: 100%;
}
.ticker-content {
    display: flex;
    gap: 40px;
    animation: scrollTicker 22s linear infinite;
    white-space: nowrap;
    padding-left: 20px;
}
@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-item {
    font-size: 0.85rem;
    color: #e2e8f0;
}
.winner-name { color: #fff; font-weight: 700; }
.win-amt { color: var(--emerald); font-weight: 700; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 60px 0 80px;
    position: relative;
}
.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold-primary);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--emerald);
    animation: pulseBlink 1.2s infinite alternate;
}
@keyframes pulseBlink {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.gradient-gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.6;
}

/* Giant Hero Download Button (Bulletproof Styling) */
.hero-cta-group {
    margin-bottom: 36px;
}
.hero-dl-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: linear-gradient(135deg, #fff066, #ffaa00) !important;
    color: #000000 !important;
    padding: 16px 24px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.4) !important;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #ffffff !important;
    max-width: 480px;
}
.hero-dl-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 15px 45px rgba(255, 215, 0, 0.6) !important;
}
.btn-icon {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000 !important;
}
.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    margin: 0 16px;
    color: #000000 !important;
}
.btn-small {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
    color: #000000 !important;
}
.btn-large {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #000000 !important;
}
.btn-arrow {
    font-size: 1.3rem;
    background: rgba(0, 0, 0, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000 !important;
}

.security-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}
.security-strip span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.security-strip i {
    color: var(--emerald);
}

.payout-partners {
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
}
.partner-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}
.partner-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.chip {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.chip i { color: var(--gold-primary); }

/* Hero Visual / Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.phone-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-mockup-wrapper {
    position: relative;
    z-index: 10;
}
.phone-mockup {
    width: 280px;
    height: 580px;
    background: #000;
    border: 8px solid #20283e;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.15);
    animation: floatPhone 6s ease-in-out infinite;
}
@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.phone-speaker {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 14px;
    background: #141926;
    border-radius: 10px;
    z-index: 20;
}
.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}
.phone-shadow {
    width: 220px;
    height: 20px;
    background: rgba(255, 215, 0, 0.2);
    filter: blur(20px);
    border-radius: 50%;
    margin: 10px auto 0;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(14, 19, 31, 0.92);
    border: 1px solid var(--gold-primary);
    padding: 10px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    z-index: 30;
}
.floating-badge i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}
.floating-badge strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.2;
}
.floating-badge span {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.badge-left {
    top: 80px;
    left: -40px;
    animation: floatBadge 4s ease-in-out infinite;
}
.badge-right {
    bottom: 120px;
    right: -40px;
    animation: floatBadge 5s ease-in-out infinite 0.5s;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */
.stats-section {
    padding: 20px 0 60px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.stat-card {
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
}
.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

/* Glass Card Common */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    transition: transform 0.3s, border-color 0.3s;
}
.glass-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

/* ==========================================================================
   FEATURES SECTION & INSTAGRAM VIP CLUB
   ========================================================================== */
.features-section {
    padding: 80px 0;
}
.section-title-box {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}
.section-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
.section-heading {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-subheading {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 4-Card Symmetrical Grid for Desktop */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.feat-card {
    padding: 36px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.feat-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}
.icon-wheel { background: rgba(255, 215, 0, 0.12); color: var(--gold-primary); }
.icon-game { background: rgba(0, 230, 118, 0.12); color: var(--emerald); }
.icon-refer { background: rgba(157, 78, 221, 0.15); color: #c77dff; }
.icon-insta { background: linear-gradient(45deg, rgba(240, 148, 51, 0.2), rgba(220, 39, 67, 0.2), rgba(188, 24, 136, 0.2)); color: #dc2743; }

.feat-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.feat-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}
.feat-badge {
    align-self: flex-start;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* Instagram Special Card & Button */
.insta-card {
    border: 1px solid rgba(220, 39, 67, 0.35) !important;
    background: linear-gradient(135deg, rgba(18, 24, 38, 0.8), rgba(40, 15, 30, 0.6)) !important;
}
.insta-card:hover {
    border-color: #dc2743 !important;
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.25) !important;
}
.badge-insta {
    color: #ff758f !important;
    border-color: rgba(255, 117, 143, 0.4) !important;
    background: rgba(220, 39, 67, 0.1) !important;
    margin-bottom: 16px;
}
.insta-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    padding: 12px 20px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4) !important;
    transition: transform 0.2s, box-shadow 0.2s;
}
.insta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.6) !important;
}

/* ==========================================================================
   SHOWCASE SECTION & CAROUSEL
   ========================================================================== */
.showcase-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.4);
}
.showcase-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}
.gallery-item {
    text-align: center;
    transition: transform 0.3s;
}
.gallery-item:hover {
    transform: scale(1.02);
}
.mockup-frame {
    width: 260px;
    height: 540px;
    background: #000;
    border: 6px solid #20283e;
    border-radius: 32px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 15px 45px rgba(0,0,0,0.7);
}
.featured .mockup-frame {
    width: 290px;
    height: 600px;
    border-color: var(--gold-primary);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}
.gallery-caption {
    margin-top: 18px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
}
.carousel-hint {
    display: none;
    text-align: center;
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 20px;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-section {
    padding: 90px 0;
}
.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}
.step-card {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    text-align: center;
}
.step-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
}
.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}
.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.step-connector {
    font-size: 1.5rem;
    color: rgba(255, 215, 0, 0.4);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 80px 0;
}
.faq-container {
    max-width: 800px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.active {
    border-color: var(--gold-primary);
}
.faq-question {
    width: 100%;
    padding: 22px 24px;
    background: none;
    border: none;
    text-align: left;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-question i {
    color: var(--gold-primary);
    transition: transform 0.3s;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 22px;
}

/* ==========================================================================
   BOTTOM CTA SECTION
   ========================================================================== */
.bottom-cta-section {
    padding: 60px 0 100px;
}
.cta-box {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(18, 24, 38, 0.9), rgba(25, 33, 54, 0.7));
    border: 2px solid rgba(255, 215, 0, 0.25);
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: var(--gold-primary);
    filter: blur(160px);
    opacity: 0.2;
    z-index: 0;
}
.cta-content {
    position: relative;
    z-index: 10;
    max-width: 680px;
    margin: 0 auto;
}
.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}
.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}
.cta-btn-center {
    margin: 0 auto;
}

/* ==========================================================================
   CLEAN MINIMAL FOOTER
   ========================================================================== */
.footer-section {
    border-top: 1px solid var(--border-light);
    padding: 50px 0 30px;
    background: rgba(4, 6, 10, 0.9);
}
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}
.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}
.footer-link-item {
    color: var(--text-muted) !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: color 0.2s;
}
.footer-link-item:hover {
    color: var(--gold-primary) !important;
}
.footer-divider {
    height: 1px;
    background: var(--border-light);
    margin: 30px 0 20px;
}
.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* ==========================================================================
   MOBILE RESPONSIVE RULES (MOBILE-FIRST OPTIMIZATION)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container, .features-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    .hero-content {
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-dl-btn {
        margin-left: auto;
        margin-right: auto;
    }
    .security-strip {
        justify-content: center;
    }
    .partner-chips {
        justify-content: center;
    }
    .steps-grid {
        flex-direction: column;
    }
    .step-connector {
        transform: rotate(90deg);
    }
    .showcase-carousel {
        flex-direction: column;
    }
    .featured .mockup-frame {
        width: 260px;
        height: 540px;
    }
}

@media (max-width: 768px) {
    /* Navbar clean mobile adaptation */
    .nav-links {
        display: none !important;
    }
    .navbar {
        padding: 12px 0;
    }
    .brand-text {
        font-size: 1.3rem;
    }
    .logo-img {
        width: 36px;
        height: 36px;
    }
    .nav-dl-btn {
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
    }
    .dl-text {
        display: inline !important;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 30px 0 50px;
    }
    .trust-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 28px;
        padding: 0 10px;
    }

    /* Compact Hero Download Button for Phone */
    .hero-dl-btn {
        padding: 14px 18px !important;
        border-radius: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .btn-icon { font-size: 1.8rem; }
    .btn-small { font-size: 0.65rem; }
    .btn-large { font-size: 1.05rem; }
    .btn-arrow { width: 34px; height: 34px; font-size: 1.1rem; }

    .security-strip {
        font-size: 0.75rem;
        gap: 12px;
    }
    .payout-partners {
        padding-top: 20px;
    }
    .chip {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    /* Perfectly centered, non-overflowing phone mockup on phone */
    .hero-visual {
        margin-top: 20px;
        overflow: hidden;
        padding: 10px 0;
    }
    .phone-mockup {
        width: 220px;
        height: 460px;
        border-width: 5px;
        border-radius: 26px;
        margin: 0 auto;
    }
    .phone-speaker { width: 60px; height: 10px; top: 6px; }

    /* Keep floating badges inside phone bounds so zero overflow */
    .floating-badge {
        padding: 6px 12px;
        border-radius: 12px;
        gap: 8px;
    }
    .floating-badge i { font-size: 1.2rem; }
    .floating-badge strong { font-size: 0.8rem; }
    .floating-badge span { font-size: 0.65rem; }
    .badge-left {
        left: 0px;
        top: 20px;
    }
    .badge-right {
        right: 0px;
        bottom: 60px;
    }

    /* Stats Section Mobile */
    .stats-section { padding: 10px 0 40px; }
    .stats-grid { gap: 14px; }
    .stat-card {
        padding: 16px;
        border-radius: 16px;
        gap: 14px;
    }
    .stat-icon { width: 44px; height: 44px; font-size: 1.3rem; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.75rem; }

    /* Features Section Mobile */
    .features-section { padding: 50px 0; }
    .section-heading { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr !important; }
    .feat-card { padding: 24px 20px; }
    .feat-icon-wrapper { width: 50px; height: 50px; font-size: 1.4rem; margin-bottom: 16px; }
    .feat-card h3 { font-size: 1.2rem; }
    .feat-card p { font-size: 0.85rem; margin-bottom: 16px; }

    /* Showcase Carousel Mobile - Swipeable! */
    .showcase-section { padding: 50px 0; }
    .showcase-carousel {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
        gap: 16px;
        padding: 10px 16px 20px;
        margin: 20px -24px 0;
    }
    .gallery-item {
        flex: 0 0 220px;
        scroll-snap-align: center;
    }
    .mockup-frame, .featured .mockup-frame {
        width: 220px;
        height: 460px;
        border-width: 5px;
        border-radius: 26px;
    }
    .carousel-hint { display: block; }

    /* How It Works Mobile */
    .how-section { padding: 50px 0; }
    .step-card { padding: 24px 20px; }
    .step-num { font-size: 1.8rem; top: 14px; right: 18px; }

    /* FAQ Mobile */
    .faq-section { padding: 50px 0; }
    .faq-question { padding: 16px 18px; font-size: 0.95rem; }
    .faq-answer { font-size: 0.85rem; }
    .faq-item.active .faq-answer { padding: 0 18px 18px; }

    /* Bottom CTA Mobile */
    .bottom-cta-section { padding: 40px 0 60px; }
    .cta-box { padding: 36px 20px; }
    .cta-content h2 { font-size: 1.9rem; }
    .cta-content p { font-size: 0.9rem; margin-bottom: 24px; }
}
