body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.game-row {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Card background for better readability */
.game-card {
    background: rgba(255, 255, 255, 0.85); /* white with slight transparency */
    border-radius: 16px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #222;
    white-space: nowrap;
}

.game-logo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 10px;
}

.button img {
    width: 200px;
    height: auto;
    transition: transform 0.2s;
}

.button img:hover {
    transform: scale(1.05);
}
