body {
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    background:#020617;
    color:#fff;
}

a {
    color:#22c55e;
    margin-left:15px;
    text-decoration:none;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    right: 0;
    left: 10;
    z-index: 1000;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 25px;
    background:#000;
}

header img {
    height:45px;
}

nav a {
    color:#22c55e;
    margin-left:15px;
    text-decoration:none;
}

.hero {
    text-align:center;
    padding:50px 20px;
}

.hero img {
    width:100%;
    max-height:400px;
    object-fit:cover;
    border-radius:10px;
}

.btn {
    background:#22c55e;
    color:#000;
    padding:12px 20px;
    border-radius:6px;
    text-decoration:none;
    display:inline-block;
    margin-top:15px;
}

.games {
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:30px;
}

.game {
    text-align:center;
    width:150px;
}

.game img {
    width:100%;
}

.section {
    padding:40px 20px;
    max-width:900px;
    margin:auto;
}

footer {

    width: 100%;
    z-index: 1000;
    background:#000;
    text-align:center;
    margin-top:40px;
}

.popup {
    position:fixed;
    bottom:20px;
    left:-300px;
    background:#111;
    padding:10px 15px;
    border-radius:6px;
    transition:0.5s;
}

.popup.show {
    left:20px;
}