
        body {
            background-color: black;
            color: #fff;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
        .header {
            display: flex;
            align-items: center;
            background-color: black;
            padding: 0px 10px;
            position: fixed;
            top: -10px;
            width: 100%;
            z-index: 1000;
        }
        .back-button {
            background-color: transparent;
            color: white;
            border: none;
            font-size: 40px;
            cursor: pointer;
        }
        .container {
            max-width: 900px;
            max-width: 70px auto 0;
            padding: 20px;
            
        }
        .movie-poster {
            position: relative;
            margin: 30px 0;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            background-color: #000;
        }
        .movie-poster video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .custom-controls {
            position: absolute;
            bottom: 35%;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 0, 0, 0.0);
            padding: 10px;
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease-in-out;
        }
        .custom-controls.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .custom-controls button {
            background-color: transparent;
            border: none;
            cursor: pointer;
        }
        .custom-controls svg {
            width: 44px;
            height: 44px;
            fill: white;
        }
        #play-icon {
            display: none; /* Play icon is hidden initially */
        }
        .progress-bar-container {
            width: 100%;
            height: 5px;
            background-color: #444;
            position: relative;
            margin-top: -5px;
        }
        .progress-bar {
            width: 0;
            height: 100%;
            background-color: red;
            transition: width 0.1s linear;
            margin-top: -30px;
        }
        .movie-title {
            font-size: 36px;
            margin: 10px 0;
        }
        .movie-info {
            display: flex;
            align-items: center;
            margin: 10px 0;
        }
        .movie-info span {
            margin-right: 20px;
        }
        .movie-buttons {
            display: flex;
            margin: 20px 0;
        }
        .movie-buttons a {
            background-color: white;
            color: black;
            text-decoration: none;
            border: none;
            padding: 9px 25px;
            font-size: 18px;
            cursor: pointer;
            display: inline-block;
            margin-right: 20px;
        }
        .movie-description {
            font-size: 18px;
            margin: 20px 0;
        }
        .movie-credits {
            font-size: 16px;
        }
        .movie-credits span {
            display: block;
            margin: 5px 0;
        }
    