.game-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.game-card {
    position: relative;
    display: flex;
    background: #384f7b;
    border-radius: 2px;
    padding: 8px;
    gap: 16px;
    width: 100%;
}
.game-card-image-container {
    flex: 1;
}
.game-card-image {
    height: 100%;
    object-fit: cover;
}
.game-card-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
}
.game-card-title {
    font-size: 24px;
}
.game-card-about {
    flex: 1;
}
.game-card-label {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    flex: 100%;
}
.game-card-platforms {
    flex: 1;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.game-card-link {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}
.game-card-platform-link {
    z-index: 1;
}
@media (max-width: 767px) and (min-width: 0) {
    .game-card {
        flex-direction: column;
    }
}
@media (max-width: 320px) and (min-width: 0) {
    .game-card {
        flex-direction: column;
    }
}