/*
Theme Name: MoniGo Fintech
Theme URI: https://monigo.africa
Author: MoniGo
Description: Thème WordPress premium fintech crypto africain
Version: 1.0
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0B0F19;
    color:#FFFFFF;
    font-family:'Inter', sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:white;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    backdrop-filter:blur(15px);
    background:rgba(11,15,25,0.7);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:55px;
}

.logo h2{
    font-size:28px;
    font-weight:800;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a:hover{
    color:#7CFF4F;
}

.nav-buttons{
    display:flex;
    gap:15px;
}

.btn{
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.btn-register{
    background:#7CFF4F;
    color:#000;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    radial-gradient(circle at top right,#00AEEF33,transparent 30%),
    radial-gradient(circle at bottom left,#7CFF4F22,transparent 30%),
    #0B0F19;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    padding-top:120px;
}

.hero-text h1{
    font-size:68px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.hero-text h1 span{
    color:#7CFF4F;
}

.hero-text p{
    font-size:20px;
    color:#B8C1CC;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary{
    background:#7CFF4F;
    color:#000;
    padding:16px 30px;
    border-radius:14px;
    font-weight:700;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.1);
    padding:16px 30px;
    border-radius:14px;
}

.hero-image img{
    width:100%;
    border-radius:20px;
}

.stats{
    padding:80px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.stat-card{
    background:#161B22;
    padding:30px;
    border-radius:20px;
}

.footer{
    padding:70px 0;
    background:#05070d;
    margin-top:100px;
}

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

@media(max-width:768px){
.hero-content{
    grid-template-columns:1fr;
}

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