.movie-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(249, 71, 53, 0.2);
}

.movie-poster {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(249, 71, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #f94735;
    transform: scale(1.1);
}

.movie-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 40px 15px 15px;
}

.movie-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.movie-description {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
}

.modal-dialog {
    max-width: 53%;
    margin: 80px auto;
}

.modal-content {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.modal-header {
    border: none;
    background: linear-gradient(135deg, #f94735, #e74c3c);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
    font-size: 1.2rem;
    margin-left: 20px;
}

.btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.modal-body {

    padding: 0;
    background: #000;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container h1 {
    color: white;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}