/* =========================
   GLOBAL
========================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fc;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    padding: 15px 30px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: #1cc88a !important;
}

/* =========================
   HERO
========================= */
.hero {
    background: linear-gradient(135deg,#4e73df,#1cc88a);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
}

.hero span {
    color: #ffd700;
}

.hero p {
    font-size: 18px;
    margin: 20px 0;
}

.hero-btns .btn {
    margin-right: 10px;
}

.btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

/* HERO IMAGE BOX */
.hero .hero-img-box {
    display: inline-block;
    max-width: 350px;
    padding: 15px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.hero .hero-img-box:hover {
    transform: translateY(-5px);
}

.hero .hero-img-box img {
    max-width: 100%;
    border-radius: 12px;
}

/* =========================
   STATS
========================= */
.stats {
    padding: 70px 0;
    background: #fff;
}

.stats h2 {
    font-size: 42px;
    color: #4e73df;
    font-weight: 700;
}

/* =========================
   SECTION TITLES
========================= */
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* =========================
   FEATURES
========================= */
.features {
    padding: 80px 0;
    background: #f8f9fc;
}

.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card i {
    font-size: 45px;
    color: #4e73df;
    margin-bottom: 15px;
}

/* =========================
   LIVE ACTIVITY
========================= */
.recent {
    padding: 80px 0;
    background: #f8f9fc;
}

.earning-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.earning-box:hover {
    transform: translateY(-4px);
}

.earning-box img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

/* =========================
   HOW IT WORKS
========================= */
.how {
    padding: 80px 0;
}

.how-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.how-box:hover {
    transform: translateY(-4px);
}

.how-box h3 {
    font-size: 32px;
    color: #4e73df;
    margin-bottom: 15px;
}

/* =========================
   CTA SECTION
========================= */
.cta {
    background: #1cc88a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #222;
    color: #ccc;
    padding: 60px 0;
    text-align: center;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #fff;
}

/* =========================
   PAGE LOADER
========================= */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

body.loaded #loader {
    display: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:768px) {

    .hero {
        padding: 80px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .stats h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-btns .btn {
        margin-bottom: 10px;
    }

    .earning-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .earning-box img {
        margin-bottom: 10px;
    }

    .hero .hero-img-box {
        max-width: 90%;
        margin: 0 auto 30px;
    }
}