body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    padding: 20px;
}
.container {
    display: flex;
    justify-content: space-between;
}
.movie-poster {
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: 1px;
    margin-right: 10px;
}
.movie-details {
    width: 70%;
    color: #696969;
}
.movie-header {
    display: flex;
    align-items: center;
}
.rating-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 4px solid orange;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 20px;
}
.overview {
    margin-top: 20px;
    font-size: 16px;
}
.additional-info {
    margin-top: 20px;
}
.additional-info div {
    margin-bottom: 10px;
}
.cast {
    margin-top: 20px;
    display: flex;
    overflow-x: auto;
}
.cast img {
    width: 100px;
    height: 110px;
    object-fit: cover;
    margin-right: 5px;
    border-radius: 8px; 
}