/* ==========================
   SKYIWEB DIGITAL
   PREMIUM STYLE
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:#09090f;

    color:#fff;

}

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

/* HEADER */

.top-header{

    background:#111120;

    padding:20px 0;

    position:sticky;

    top:0;

    z-index:999;

    border-bottom:1px solid #23233c;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    height:55px;

}

.navbar ul{

    display:flex;

    gap:20px;

    list-style:none;

}

.navbar a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.navbar a:hover{

    color:#9f5cff;

}

.login-btn{

    padding:10px 20px;

    border:1px solid #7C3AED;

    border-radius:8px;

}

.register-btn{

    background:#7C3AED;

    padding:10px 22px;

    border-radius:8px;

}

/* HERO */

.hero{

    padding:100px 0;

    text-align:center;

}

.hero h1{

    font-size:58px;

    font-weight:700;

    margin-bottom:25px;

}

.hero p{

    color:#bcbcbc;

    font-size:20px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.btn{

    padding:15px 35px;

    border-radius:10px;

    text-decoration:none;

    transition:.3s;

}

.btn-primary{

    background:#7C3AED;

    color:#fff;

}

.btn-primary:hover{

    background:#9f5cff;

}

.btn-secondary{

    border:1px solid #7C3AED;

    color:#fff;

}
/* ==========================
   FOOTER
========================== */

.footer{

    background:#111120;

    padding:60px 20px;

    margin-top:80px;

    border-top:1px solid #22223d;

}

.footer-content{

    text-align:center;

}

.footer h3{

    font-size:30px;

    margin-bottom:15px;

    color:#ffffff;

}

.footer p{

    color:#bdbdbd;

    margin-top:10px;

    font-size:16px;

}
/* ==========================
PLATFORMS
========================== */

.stores{

padding:80px 0;

}

.store-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:40px;

}

.store-card{

background:#17172b;

padding:35px;

text-align:center;

border-radius:15px;

transition:.3s;

border:1px solid #2c2c48;

font-size:20px;

font-weight:600;

}

.store-card:hover{

transform:translateY(-8px);

background:#7C3AED;

}
.stats-card{
    color:#fff;
    border-radius:16px;
    transition:.3s;
}

.stats-card:hover{
    transform:translateY(-6px);
}

.bg-purple{
    background:#6f42c1;
}

.bg-green{
    background:#198754;
}

.bg-blue{
    background:#0d6efd;
}

.bg-red{
    background:#dc3545;
}