



.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: #ff69b4;
    font-size: 1.1rem;
    margin: 0px 10px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.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: linear-gradient(to bottom, #ff69b4, #8a2be2);
    border-radius: 20px;
    right: 0px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommend-item-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.kofasofh-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.kofasofh-recommend-content img {
    width: 100%;
}

.kofasofh-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 15px 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.95), rgba(240, 230, 250, 0.95));
    border: 2px solid transparent;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.15);
    background-clip: padding-box;
    border-image: linear-gradient(135deg, #ff69b4, #8a2be2) 1;
    backdrop-filter: blur(5px);
}

.kofasofh-recommend-content-hot img {
    width: 100%;
}

.kofasofh-game-item {
    border: 2px solid #ff69b4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.kofasofh-game-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
    border-color: #8a2be2;
}

.kofasofh-game-big-2 {
    border: 3px solid transparent;
    background: linear-gradient(to bottom right, white, white) padding-box,
                linear-gradient(135deg, #ff69b4, #8a2be2) border-box;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.25);
}

.kofasofh-game-big-2:hover {
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.35);
    transform: translateY(-4px);
}

.kofasofh-game-cover-recommend {
    border: 2px solid #ffb6c1;
    border-radius: 10px;
    overflow: hidden;
    margin: 5px;
    background-color: white;
}

.kofasofh-game-cover-recommend img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.kofasofh-game-item:hover .kofasofh-game-cover-recommend img {
    transform: scale(1.05);
}

.kofasofh-game-info {
    background: linear-gradient(135deg, #fff0f5 0%, #f0e6fa 100%);
    border: 1px solid #ffb6c1;
    border-radius: 10px;
    padding: 8px;
    margin: 5px;
    box-shadow: inset 0 2px 5px rgba(255, 105, 180, 0.1);
}

.kofasofh-game-info p:first-child {
    color: #ff1493;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.kofasofh-game-info p:last-child {
    color: #6a5acd;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.3;
}




