{
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    padding: 20px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* ===== HORIZONTAL SCROLLER ===== */
.directors-wrapper {
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 15px 0;
}

.directors-track {
    display: flex;
    gap: 20px;
    animation: scroll 25s linear infinite;
}

.director {
    flex: 0 0 auto;
    text-align: center;
    cursor: pointer;
}

.director img {
    width: 150px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.director img:hover {
    transform: scale(1.05);
}

.director p {
    margin-top: 8px;
    font-weight: 600;
}

/* ===== AUTO SCROLL ===== */
@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== LIGHTBOX POPUP ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.lightbox:target {
    display: flex;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
}