*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* PAGE BACKGROUND */
body{
    font-family:Segoe UI, sans-serif;
    color:#eef4ff;

    background:
    linear-gradient(180deg,#10151d,#141b25,#0f1319);

    min-height:100vh;
}

/* HERO SECTION */
.hero{
    text-align:center;
    padding:10px 20px 15px;
}

.hero h1{
    font-size:3rem;
    color:white;
    margin-bottom:10px;
}

.hero p{
    color:#aab8cc;
    max-width:600px;
    margin:auto;
    line-height:1.7;
}

/* GAME LIST CONTAINER */
.games{
    width:min(1000px,90%);
    margin:auto;
}

/* GAME CARD */
.game-card{
    display:flex;
    gap:24px;

    margin-bottom:28px;
    padding:18px;

    background:#1a222d;

    border:1px solid #2d3b4d;
    border-radius:14px;

    transition:0.25s;
}

.game-card:hover{
    transform:translateY(-3px);
    border-color:#6ea9ff;
}

/* GAME IMAGE */
.game-card img{
    width:320px;
    height:180px;
    object-fit:cover;
    border-radius:10px;
}

/* TEXT AREA */
.info{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.info h2{
    margin-bottom:12px;
    color:white;
}

.info p{
    color:#b8c4d6;
    line-height:1.7;
    margin-bottom:18px;
}

/* DOWNLOAD BUTTON */
.download-btn{
    display:inline-block;
    padding:12px 22px;

    background:#3c6db5;
    color:white;

    text-decoration:none;
    border-radius:8px;

    transition:0.2s;
}

.download-btn:hover{
    background:#4f82d0;
}

/* BACK TO TOP BUTTON */
#topBtn{
    position:fixed;
    right:20px;
    bottom:20px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:#3c6db5;
    color:white;

    cursor:pointer;

    display:none;

    font-size:18px;
}

/* FOOTER */
footer{
    text-align:center;
    padding:50px 20px;
    color:#8c9aaf;
}

/* PAGINATION */
.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;

    margin:40px 0;
}

.pagination button{
    padding:10px 14px;

    border:none;
    border-radius:8px;

    background:#3c6db5;
    color:white;

    cursor:pointer;
}

.pagination button:disabled{
    opacity:0.4;
}

.pagination span{
    color:#b8c4d6;
}

/* MOBILE */
@media(max-width:800px){

    .game-card{
        flex-direction:column;
    }

    .game-card img{
        width:100%;
        height:auto;
    }

    .hero h1{
        font-size:2.2rem;
    }

}

/* Links at top of website */
.topbar{
    display:flex;
    justify-content:center;
    gap:18px;

    padding:10px 12px;

    font-size:13px;

    background:rgba(0,0,0,0.25);
    backdrop-filter:blur(8px);

    border-bottom:1px solid rgba(255,255,255,0.08);
}

.topbar a{
    color:#b8c4d6;
    text-decoration:none;

    padding:4px 8px;

    border-radius:6px;

    transition:0.2s;
}

.topbar a:hover{
    color:white;
    background:rgba(60,109,181,0.25);
}