body {
    background: #111;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.game-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.game-card {
    background: #222;
    border: 1px solid #444;
    padding: 20px;
    width: 200px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: 0.2s;
}

.game-card:hover {
    background: #333;
    transform: scale(1.05);
}
