.games-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.game-box {
    flex: 0 0 calc(33.333% - 13.333px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 1px solid #323232;
    border-radius: 8px;
    background-color: #393939;
    background-image: linear-gradient(to bottom, #272727, #1e1e1e);
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    min-height: 500px;
    max-width: 400px;
}

.game-box:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.game-store-list{
    width: 110px;
    margin-bottom: 15px;
}

.game-icon {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.55);
}

.game-name {
    font-size: 30px;
    margin-bottom: 5px;
    color: #ffffff;
}

.game-description {
    font-size: 18px;
    color: #b3b3b3;
    margin-bottom: 15px;
    flex-grow: 1;
}

.game-stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    font-size: 0.85em;
    color: #636363;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: auto;
}

.game-downloads, .game-rating {
    padding: 0 5px;
}

@media (max-width: 768px) {
    .game-box {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .game-box {
        flex: 0 0 100%;
    }
}