
.film-expand-card {
    width: 300px;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.film-expand-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.film-expand-card .film-expand-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 20px;
}

.film-expand-card.is-open {
    transform: scale(1.1);
    z-index: 10;
}

.film-expand-card.is-open .film-expand-overlay {
    opacity: 1;
}

.play-btn {
    background: crimson;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    margin-bottom: 12px;
    cursor: pointer;
}
