/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
}

/* Video Section */
.video-wrapper {
    perspective: 1000px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.video-wrapper iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 10px;
}

/* Picture Section */
.picture-wrapper {
    perspective: 1000px;
    transition: transform 0.5s;
}

.picture-wrapper img {
    border-radius: 15px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s, box-shadow 0.5s;
}

/* Hover Effects */
.picture-wrapper:hover {
    transform: rotateY(15deg) rotateX(10deg);
}

.picture-wrapper img:hover {
    transform: scale(1.1);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.8);
}
/*css in html*/
.movie-details {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.movie-details img {
    width: 50%;
    border-radius: 10px;
}

.movie-details h2 {
    margin-top: 20px;
}

.movie-details p {
    font-size: 1.2rem;
}
/*css in html*/