.scroller-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px;
}

.scroller {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-left: 25px;
    padding-right: 15px;
}

.actor-card {
    flex: 0 0 auto;
    width: 200px;
    color: white;
    margin-left: 15px;
    border-radius: 8px;
    transition: transform 0.2s;
}

.actor-card img {
    width: 100%;
    height: 50%;
    border-radius: 100px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.actor-card img:hover {
    transform: scale(1.1);
}

.actor-info {
    padding: 10px;
}

.actor-info {
    margin-left: 35px;
}

.scroll-left,
.scroll-right {
    position: absolute;
    top: 50%;
    font-size: 70px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.scroller {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
}


/* Responsive Styles */
@media (max-width: 768px) {
    .movie-card {
        width: 150px;
    }

    .scroll-left,
    .scroll-right {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .movie-card {
        width: 50%;
    }

    .scroll-left,
    .scroll-right {
        padding: 5px;
    }
}