.earn-hero{
    background:linear-gradient(135deg,#07142f,#1d3557);
    border-radius:35px;
    padding:80px 40px;
    text-align:center;
    color:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.earn-badge{
    background:#16a34a;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    display:inline-block;
    margin-bottom:25px;
}

.earn-hero h1{
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
    color: #ffffff;
}

.earn-hero p{
    font-size:22px;
    color:#dbeafe;
    max-width:850px;
    margin:auto;
}

.earn-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-earn-primary{
    background:#ea001e;
    color:#fff;
    padding:16px 35px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
}

.btn-earn-secondary{
    background:#fff;
    color:#111827;
    padding:16px 35px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
}

.earn-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.earn-card:hover{
    transform:translateY(-5px);
}

.earn-section{
    margin-top:80px;
}

.section-title{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.step-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.step-number{
    width:70px;
    height:70px;
    background:#ea001e;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    font-size:28px;
    font-weight:700;
}

.faq-box{
    background:#f9f9e9;
    padding:30px;
    border-radius:20px;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.earn-final-box{
    background:linear-gradient(135deg,#07142f,#1d3557);
    border-radius:30px;
    padding:60px 30px;
    color:#fff;
}

.earn-info-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.3s;
}

.earn-info-card:hover{
    transform:translateY(-5px);
}

.earn-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#07142f,#1d3557);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin-bottom:25px;
}

.earn-info-card h2{
    font-size:38px;
    margin-bottom:30px;
}

.earn-mini-box{
    background:#f8fafc;
    border-radius:18px;
    padding:25px;
    margin-bottom:20px;
}

.earn-mini-box h5{
    margin-bottom:15px;
    font-size:24px;
}

.earn-mini-box p,
.earn-mini-box li{
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

.withdraw-list{
    list-style:none;
    padding:0;
    margin:0;
}

.withdraw-list li{
    background:#f8fafc;
    padding:18px 20px;
    border-radius:15px;
    margin-bottom:15px;
    font-size:18px;
}

.security-box{
    margin-top:30px;
    background:#dcfce7;
    color:#166534;
    padding:20px;
    border-radius:18px;
    font-weight:600;
    line-height:1.7;
}

@media(max-width:768px){

    .earn-info-card{
        padding:30px 22px;
    }

    .earn-info-card h2{
        font-size:30px;
    }

}

@media(max-width:992px){

    .steps-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .earn-hero{
        padding:50px 20px;
    }

    .earn-hero h1{
        font-size:38px;
    }

    .earn-hero p{
        font-size:18px;
    }

    .steps-grid{
        grid-template-columns:1fr;
    }

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

}