#rouletteCarouselLayout {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    width: 100%;
}

#carouselZone {
    width: 220px;
    flex-shrink: 0;
    margin-top: 50px;
}

#clipCarouselBox {
    width: 210px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.45);
    text-align: center;
}

#carouselTrack {
    height: 420px;
    overflow-y: auto;
    scroll-behavior: smooth;

    scrollbar-width: none;
    -ms-overflow-style: none;

    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px;
}

#carouselTrack::-webkit-scrollbar {
    display: none;              /* Chrome / Edge / Safari */
}

.clipThumb {
    width: 180px;
    height: 105px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.85;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.2s, opacity 0.2s, border-color 0.2s;
}

.clipThumb:hover {
    opacity: 1;
    transform: scale(1.04);
    border-color: white;
}

.carouselBtn {
    width: 42px;
    height: 32px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

#rouletteCarouselLayout #carouselZone {
    margin-top: 60px !important;
}