*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Tahoma, sans-serif;
}

body{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    min-height:100vh;
    color:white;
    direction:rtl;
}

header{
    text-align:center;
    padding:30px;
}

header h1{
    font-size:42px;
    color:#38bdf8;
}

header p{
    margin-top:10px;
    color:#cbd5e1;
}

.games{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    padding:40px;
    max-width:1200px;
    margin:auto;
}

.card{
    background:#1e293b;
    border-radius:18px;
    padding:30px;
    text-align:center;
    text-decoration:none;
    color:white;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
}

.card:hover{
    transform:translateY(-10px);
    background:#2563eb;
}

.icon{
    font-size:60px;
    margin-bottom:20px;
}

.card h2{
    font-size:26px;
}

footer{
    text-align:center;
    padding:20px;
    color:#94a3b8;
}