/* =========================
   HOME ACTORS SLIDER
========================= */

.home-actors-section {
    margin: 40px 0;
    padding: 25px;
    background: linear-gradient(135deg,#121826,#0f1722);
    border-radius: 18px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.slider-nav {
    display: flex;
    gap: 10px;
}

.slider-nav div {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: 0.2s;
}

.slider-nav div:hover {
    background: #6c63ff;
}

.actor-slide {
    text-align: center;
}

.actor-avatar {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 10px;
}

.actor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.actor-slide .actor-name {
    font-size: 14px;
    color: #cbd5e1;
}