*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#0f172a;
    color:#fff;
}

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

header{
    position:fixed;
    width:100%;
    top:0;
    background:rgba(15,23,42,.95);
    z-index:1000;
    padding:20px 0;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:24px;
    font-weight:bold;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:auto;
    font-size:20px;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 35px;
    background:white;
    color:#2563eb;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}

.games{
    padding:100px 20px;
    text-align:center;
}

.games h2{
    margin-bottom:50px;
    font-size:40px;
}

.game-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.card{
    background:#1e293b;
    padding:30px;
    border-radius:20px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card span{
    font-size:50px;
}

.card h3{
    margin:15px 0;
}

.about{
    background:#111827;
    padding:100px 20px;
    text-align:center;
}

.container-small{
    max-width:800px;
    margin:auto;
}

.about h2{
    margin-bottom:25px;
    font-size:40px;
}

.about p{
    line-height:1.8;
    margin-bottom:15px;
}

.apps{
    padding:100px 20px;
    text-align:center;
}

.app-list{
    display:flex;
    gap:25px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:40px;
}

.app-card{
    width:300px;
    background:#1e293b;
    padding:25px;
    border-radius:20px;
}

.app-card a{
    display:inline-block;
    margin-top:15px;
    background:#2563eb;
    color:white;
    padding:10px 20px;
    border-radius:10px;
    text-decoration:none;
}

footer{
    text-align:center;
    padding:40px 20px;
    background:#020617;
}

@media(max-width:768px){

.hero h1{
    font-size:38px;
}

nav{
    display:none;
}

}