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

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#111827;
}

.navbar{
    position:fixed;
    top:0;
    width:100%;
    height:90px;
    background:#000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 8%;
    z-index:1000;
}

.logo a{
    text-decoration:none;
    color:#ffffff;
}

.navbar a{
    color:#ffffff;
    text-decoration:none;
    font-size:1.1rem;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover{
    opacity:.7;
}

.navbar ul{
    list-style:none;
    display:flex;
    gap:50px;
}

.socials{
    display:flex;
    gap:25px;
    color:#ffffff;
}
.hero h1{
    font-size:4rem;
    line-height:1.15;
    font-weight:700;
    margin-bottom:25px;
    color:#111827;
}

/* HERO */

.hero{
    min-height:100vh;
    background:#ffffff;
    display:flex;
    align-items:center;
    padding:120px 8%;
}

/* REMOVE DARK OVERLAY COMPLETELY */

.overlay{
    display:none;
}

.hero-content{
    max-width:700px;
}

.game-badge{
    display:inline-block;
    margin-bottom:30px;
    font-size:3rem;
    font-weight:800;
    color:#111827;
}

.hero h1{
    font-size:4rem;
    line-height:1.15;
    font-weight:700;
    margin-bottom:25px;
    color:#111827;
}

.hero p{
    font-size:1.2rem;
    line-height:1.8;
    color:#6B7280;
    margin-bottom:40px;
}


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

.store-btn-image{
    display:inline-block;
    transition:transform .3s ease;
}

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

.store-btn-image img{
    height:60px;
    width:auto;
    display:block;
}

/* OLD TEXT BUTTON STYLE (OPTIONAL) */

.store-btn{
    background:#111827;
    color:white;
    text-decoration:none;
    padding:16px 28px;
    border-radius:12px;
    min-width:220px;
    transition:.3s;
}

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

.store-btn small{
    display:block;
    opacity:.7;
    font-size:.8rem;
}

.store-btn strong{
    font-size:1.4rem;
}

/* RESPONSIVE */

@media(max-width:900px){

    .navbar{
        padding:0 5%;
    }

    .navbar ul{
        display:none;
    }

    .hero{
        padding:120px 5%;
    }

    .hero h1{
        font-size:2.5rem;
    }

    .hero p{
        font-size:1rem;
    }

    .game-badge{
        font-size:2rem;
    }
}
