html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

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

.game {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px;
    text-align: center;
    overflow: visible;
    position: relative;
}

.game a {
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
}

.game a:hover {
    transform: scale(1.1);
    z-index: 1;
}

.game img {
    width: 100%;
    max-width: 200px;
    height: auto;
    transition: box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .game {
        flex-direction: row;
        justify-content: space-around;
    }

    .game img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .game {
        margin: 10px;
    }
}