.gamesContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    /*display: grid;
    /*grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));*//*
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
    padding: 20px;*/
}
.gameContainer {
    width: 320px; /* Adjust as needed */
    height: 160px; /* Adjust as needed */    
    position: relative;
    border-radius: 20px; /* Adjust as needed */
    background-color: black;
    border: 2px solid white;
    overflow: hidden;
    box-shadow:0 0 15px rgb(255 255 255 / 50%);
}

.gameImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    /*border-radius: 20px 20px 20px 20px;*/
    overflow: hidden;
}

.gameImage img {
    border-radius: 10% 10% 10% 10%;
    margin: 5%;
    width: 90%;
    height: 90%;
    object-fit: cover;
}

.gameInfo {
    /*top: -5px;
    width: 50%;
    padding-left: 10px;
    box-sizing: border-box;
    color: white;
    font-size: 18px;
    line-height: 0.8;*/
    
    position: absolute;
    top: -5px;
    right: 0;
    width: 50%;
    height: 100%;
    padding-left: 10px;
    box-sizing: border-box;
    color: white;
    font-size: 18px;
    line-height: 0.8;
    
    /*position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    color: white;
    font-size: 16px;
    line-height: 1.5;*/
}

.platformsContainter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: absolute;
    width: 100%;
    margin-top: 50px;
    padding-bottom: 100%; /* Creates a 1:1 aspect ratio */
}

.platformLink {
    width: 20%;
}

.platformLink img {
    height: 100%;
    width: 100%;
}

.platformLinkGP:hover img {
    filter: opacity(0.5) drop-shadow(0 0 0 #3ddb85) saturate(1000%);
}

.platformLinkAS:hover img {
    /*filter: opacity(0.5) drop-shadow(0 0 0 #14BEFB) saturate(800%); drop-shadow(0 0 5px #ffffff78)*/
    /*filter: opacity(0.5) drop-shadow(0 0 0 #888888) saturate(800%); */
    filter: opacity(0.5) drop-shadow(0 0 0 #3ddb85) saturate(1000%);
}