



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #FF6B6B;
    font-size: 1.1rem;
    margin: 0px 10px;
    font-weight: bold;
}
.recommend-item-info p {
    display: flex;
    color: #5A5A5A;
    font-size: 0.8rem;
    margin: 10px 10px;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 35px;
    background-color: #6BCB77;
    border-radius: 20px;
    right: 0px;
    box-shadow: 0 4px 0 #4A9E55;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recommend-item-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 0 #4A9E55;
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.okdfvk-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.okdfvk-recommend-content img {
    width: 100%;
}

.okdfvk-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 15px 20px;
    padding: 15px;
    background-color: #FF6B6B;
    border-radius: 20px;
    box-shadow: 0 4px 0 #C44545;
    border: 3px solid #C44545;
}

.okdfvk-recommend-content-hot .okdfvk-game-item {
    background-color: #FFFFFF;
    border-color: #FFD93D;
    box-shadow: 0 4px 0 #FFD93D;
}

.okdfvk-recommend-content-hot .okdfvk-game-item:hover {
    box-shadow: 0 8px 0 #FFD93D;
}

.okdfvk-recommend-content-hot img {
    width: 100%;
}

.recommend-title-1 {
    background-color: #FF6B6B;
    box-shadow: 0 4px 0 #C44545;
}

.recommend-title-1 img {
    filter: brightness(0) invert(1);
}

.recommend-title-2 {
    background-color: #4D96FF;
    box-shadow: 0 4px 0 #3A7BC8;
}

.recommend-title-2 img {
    filter: brightness(0) invert(1);
}

.recommend-title-3 {
    background-color: #6BCB77;
    box-shadow: 0 4px 0 #4A9E55;
}

.recommend-title-3 img {
    filter: brightness(0) invert(1);
}

.recommend-title-4 {
    background-color: #FFD93D;
    box-shadow: 0 4px 0 #E6C229;
}

.recommend-title-4 img {
    filter: brightness(0) invert(0);
}

.game-style-1 {
    border-color: #FF6B6B;
    box-shadow: 0 4px 0 #FF6B6B;
}

.game-style-1:hover {
    box-shadow: 0 8px 0 #FF6B6B;
}

.game-style-2 {
    border-color: #4D96FF;
    box-shadow: 0 4px 0 #4D96FF;
}

.game-style-2:hover {
    box-shadow: 0 8px 0 #4D96FF;
}

.game-style-3 {
    border-color: #6BCB77;
    box-shadow: 0 4px 0 #6BCB77;
}

.game-style-3:hover {
    box-shadow: 0 8px 0 #6BCB77;
}

.game-style-4 {
    border-color: #FFD93D;
    box-shadow: 0 4px 0 #FFD93D;
}

.game-style-4:hover {
    box-shadow: 0 8px 0 #FFD93D;
}

.game-style-1 h3 {
    color: #FF6B6B;
}

.game-style-2 h3 {
    color: #4D96FF;
}

.game-style-3 h3 {
    color: #6BCB77;
}

.game-style-4 h3 {
    color: #FFD93D;
}




