



.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: #e94560;
    font-size: 1.2rem;
    margin: 10px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(233, 69, 96, 0.5);
}
.recommend-item-info p {
    display: flex;
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 10px;
    font-weight: bold;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #e94560 0%, #0f3460 100%);
    border-radius: 25px;
    right: 0px;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e94560;
}

.recommend-item-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(233, 69, 96, 0.5);
    background: linear-gradient(90deg, #0f3460 0%, #e94560 100%);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.ifvjcx-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.ifvjcx-recommend-content img {
    width: 100%;
}

.ifvjcx-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.25);
    border: 2px solid #e94560;
}

.ifvjcx-recommend-content-hot img {
    width: 100%;
}

.ifvjcx-category-nav {
    margin: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.25);
    border: 2px solid #e94560;
}

.ifvjcx-category-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.ifvjcx-category-title p {
    color: #e94560;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 0 15px rgba(233, 69, 96, 0.5);
}

.ifvjcx-category-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 10px;
}

.ifvjcx-category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    border-radius: 15px;
    text-decoration: none;
    border: 2px solid rgba(233, 69, 96, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 0;
    overflow: hidden;
}

.ifvjcx-category-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
    border-color: #e94560;
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
}

.ifvjcx-category-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.ifvjcx-category-btn span:last-child {
    color: #e0e0e0;
    font-size: 0.75rem;
    font-weight: bold;
    text-align: center;
    word-break: break-word;
}

.ifvjcx-daily-pick {
    margin: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.25);
    border: 2px solid #e94560;
}

.ifvjcx-daily-pick-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ifvjcx-daily-pick-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ifvjcx-daily-icon {
    font-size: 1.5rem;
}

.ifvjcx-daily-pick-title p {
    color: #e94560;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 0 15px rgba(233, 69, 96, 0.5);
}

.ifvjcx-daily-date {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.7;
}

.ifvjcx-daily-pick-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ifvjcx-daily-item {
    width: 100%;
    text-align: center;
}

.ifvjcx-daily-item a {
    text-decoration: none;
}

.ifvjcx-daily-item img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ifvjcx-daily-item:hover img {
    transform: scale(1.02);
}

.ifvjcx-daily-item h3 {
    color: #e94560;
    font-size: 1.1rem;
    margin: 10px 0;
    font-weight: bold;
}

.ifvjcx-daily-item p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.ifvjcx-game-guides {
    margin: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.25);
    border: 2px solid #e94560;
}

.ifvjcx-guides-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.ifvjcx-guides-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ifvjcx-guides-icon {
    font-size: 1.5rem;
}

.ifvjcx-guides-title p {
    color: #e94560;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 0 15px rgba(233, 69, 96, 0.5);
}

.ifvjcx-guides-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ifvjcx-guide-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    border-radius: 15px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    transition: all 0.3s ease;
    gap: 15px;
}

.ifvjcx-guide-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
    border-color: #e94560;
}

.ifvjcx-guide-icon-type {
    font-size: 2rem;
    flex-shrink: 0;
}

.ifvjcx-guide-info {
    flex: 1;
}

.ifvjcx-guide-info h4 {
    color: #e94560;
    font-size: 1rem;
    margin: 0 0 5px 0;
    font-weight: bold;
}

.ifvjcx-guide-info p {
    color: #e0e0e0;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.ifvjcx-guide-link {
    color: #e94560;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 8px 15px;
    border: 1px solid #e94560;
    border-radius: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ifvjcx-guide-link:hover {
    background: #e94560;
    color: #fff;
}




