



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background-color: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 6px 0 #E0E0E0;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 3px solid #FFD93D;
}

.recommend-item img:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: #FFC107;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 15px;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.recommend-item-info h3 {
    color: #FF6B6B;
    font-size: 1.1rem;
    margin: 0px 10px;
    font-weight: bold;
}
.recommend-item-info p {
    display: flex;
    color: #888;
    font-size: 0.85rem;
    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: #FF6B6B;
    border-radius: 10px;
    right: 0px;
    box-shadow: 0 4px 0 #E55A5A;
    transition: all 0.2s ease;
}

.recommend-item-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 0 #E55A5A;
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.pcducb-recommend-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 15px 10px;
}

.pcducb-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 15px 20px;
}

.pcducb-recommend-content-hot img {
    width: 100%;
    border-radius: 12px;
    border: 3px solid #FF6B6B;
    box-shadow: 0 4px 0 #E55A5A;
    transition: all 0.3s ease;
}

.pcducb-recommend-content-hot img:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #E55A5A;
}

#pcducb-recommend-content-2 .pcducb-game-cover img {
    border-color: #4ECDC4;
    box-shadow: 0 6px 0 #3DBDB5;
}

#pcducb-recommend-content-3 .pcducb-game-cover img {
    border-color: #FFD93D;
    box-shadow: 0 6px 0 #E6C235;
}

#pcducb-recommend-content-4 .pcducb-game-cover img {
    border-color: #A78BFA;
    box-shadow: 0 6px 0 #9275E8;
}

#pcducb-recommend-content-5 .pcducb-game-cover img {
    border-color: #FF8E53;
    box-shadow: 0 6px 0 #E57A43;
}




