body {
    font-family: Arial, sans-serif;
    position: relative;
    margin: 0 auto;
    max-width: 720px;
    font-size: 14px;
    background-color: #f4f4f4;
}
header {
    background-color: #333;
    color: #fff;
    padding: 20px 10%;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2em;
}
.new-list{
    background-color: rgba(7, 70, 13, .8);
}
.new-movies{
    padding:10px;
    font-size: 16px;
    border: 1px solid #033508;
    text-align: center;
    background-color: rgba(20, 141, 234, .8);
}
.rand-list{
    background-color: rgba(30, 193, 45, .8);
}
.rand-movies{
    padding:10px;
    font-size: 16px;
    border: 1px solid #efc26f;
    text-align: center;
    background-color: rgba(243, 93, 20, .8);
}
.item{
    padding: 15px;
    border-bottom: 1px solid #efc26f;
}
.flex {
    display: flex;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.pic{
    width: 100px;
    height: 120px;
}
.details{
    margin-left: 20px;
}
.details a{
    padding:1px 0 2px 1px;
    font-size: 15px;
    margin-bottom: 30px;
}
.details div{
    margin-top: 10px;
}
nav {
    padding: 10px;
    font-size: 14px;
    border-bottom: 1px solid #efc26f;
}
main {
    position: relative;
}
.pic2{
    width: 150px;
    height: 200px;
}
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.movie-info {
    border-bottom: 1px solid #efc26f;
}
.movie-info h2 {
    text-align: center;
    font-size: 1.8em;
    padding: 0 10px 20px 10px;
    border-bottom: 1px solid #efc26f;
}
.movie-info .pl {
    padding-bottom: 25px;
}
.movie-info p {
    padding: 10px;
    font-size: 1.2em;
    color: #555;
}
.movie-info .action {
    margin-top: 20px;
    text-align: right;
}
.movie-info .action .btn {
    padding: 8px;
    font-size: 14px;
    border-radius: 6px;
    color: #fff;
    background: #2a3fe2;
}
.movie-info .action .play_btn {
    padding: 10px;
    margin-left: 20px;
    font-size: 16px;
    border-radius: 6px;
    color: #efc26f;
    background: #033508;
}
.related-movies {
    margin: 10px;
}
.related-movies h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.related-movies .movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}
.related-movies img {
    width: 150px;
    height: 220px;
    border-radius: 5px;
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}