﻿
.movie-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* Yarı şəffaf qara */
    display: flex;
    align-items: center; /* Şaquli ortalama */
    justify-content: center; /* Üfüqi ortalama */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.movie-hover-overlay h6 {
    color: #fff; /* Ağ rəng */
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 0 15px;
}

.img-box:hover .movie-hover-overlay {
    opacity: 1;
}



