



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 20px 0px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.15);
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 3px solid #00bcd4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.recommend-item img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
    border-color: #4dd0e1;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #333;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: bold;
}
.recommend-item-info p {
    display: flex;
    color: #666;
    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: 25px;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    border-radius: 5px;
    right: 0px;
    box-shadow: 0 2px 5px rgba(0, 188, 212, 0.3);
    transition: transform 0.2s ease;
}

.recommend-item-btn:hover {
    transform: scale(1.05);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.efbdsv-recommend-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 20px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 15px;
}

.efbdsv-recommend-content img {
    width: 100%;
}

.efbdsv-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 15px 20px;
}

.efbdsv-recommend-content-hot img {
    width: 100%;
}

.efbdsv-category-nav {
    margin: 15px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0f7fa 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.2);
}

.category-nav-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0097a7;
    margin-bottom: 15px;
    text-align: center;
}

.category-nav-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 188, 212, 0.3);
}

.category-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 188, 212, 0.4);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.category-btn span:last-child {
    font-size: 0.9rem;
    font-weight: bold;
}

.efbdsv-daily-pick {
    margin: 20px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(255, 112, 67, 0.2);
}

.daily-pick-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.daily-pick-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.daily-pick-header h3 {
    margin: 0;
    color: #ff7043;
    font-size: 1.3rem;
    font-weight: bold;
}

.daily-pick-badge {
    background: linear-gradient(135deg, #ff5722 0%, #f4511e 100%);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 10px;
}

.daily-pick-content {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.efbdsv-game-strategies {
    margin: 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.strategies-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.strategies-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.strategies-header h3 {
    margin: 0;
    color: #4caf50;
    font-size: 1.3rem;
    font-weight: bold;
}

.strategies-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.strategy-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.strategy-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.strategy-icon {
    font-size: 2rem;
    margin-right: 15px;
}

.strategy-info {
    flex: 1;
}

.strategy-info h4 {
    margin: 0 0 5px 0;
    color: #2e7d32;
    font-size: 1rem;
    font-weight: bold;
}

.strategy-info p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
}

.efbdsv-hot-tags {
    margin: 20px;
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.2);
}

.hot-tags-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.hot-tags-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.hot-tags-header h3 {
    margin: 0;
    color: #9c27b0;
    font-size: 1.3rem;
    font-weight: bold;
}

.hot-tags-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag-item {
    background: linear-gradient(135deg, #ba68c8 0%, #ab47bc 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
}

.tag-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.4);
}




