body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #141414;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.player-container {
    width: 90%;
    max-width: 1000px;
    text-align: center;
}

#movie-title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.back-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #e50914;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}
