.category-scroll-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 20px 0;
}

.category-scroll-container::-webkit-scrollbar {
    display: none;
}

.livestream-category ul{margin:0}
.livestream-category {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
    justify-content: space-between;
}

.livestream-category li {
    flex: 0 0 auto;
    margin: 0 !important;
    padding: 0;
}

.livestream-category li a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    text-align: center;
}

.livestream-category .icon-circle {
    max-width: 150px;
    width: 100%;
    max-height: 150px;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.livestream-category img {
    width: 75%;
    height: auto;
    object-fit: contain;
}

.livestream-category span {
    color: #333;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
    white-space: normal;
}

.livestream-category li:hover .icon-circle,
.livestream-category li.active .icon-circle {
    transform: translateY(-10px);
}

.livestream-category li:hover span,
.livestream-category li.active span {
    color: #e67e22;
}

@media (max-width: 767px) {
    .livestream-category {
        justify-content: flex-start;
    }
    .livestream-category img{width:90%}

    .livestream-category li a {
        width: 38vw;
    }

    .livestream-category .icon-circle {
        width: 40vw;
        height: 40vw;
    }

    .livestream-category span {
        font-size: 13px;
    }
}