.el-gameplay-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

@media (max-width: 992px) {
    .el-gameplay-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .el-gameplay-items {
        grid-template-columns: 1fr;
    }
}

.gameplay-card {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 2px;
}

.gameplay-card:before {
    background: rgb(12, 12, 53);
    background: linear-gradient(180deg, rgba(12, 12, 53, 0) 0%, rgba(12, 12, 53, 1) 100%);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.gameplay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    line-height: 1;
}

.gameplay-card .play-button {
    background: #f90cff;
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    position: absolute;
    width: 70px;
    height: 70px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 33.25px 1.75px rgba(0, 27, 103, .35);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gameplay-card .play-button:hover {
    color: var(--galactic-primary-color, "#9841ff");
}

.gameplay-card .gameplay-content {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
}

.gameplay-card .gameplay-content .date {
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    color: #f1d6c5;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.gameplay-card .gameplay-content .date i {
    color: var(--galactic-primary-color, "#9841ff");
    font-size: 20px;
    margin-top: -2px;
}

.gameplay-card .gameplay-content h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0 0;
    line-height: 1;
    letter-spacing: -1px;
}