
*{
    box-sizing:border-box;
}

body{
    background:#0b0b0b;
    color:#fff;
    font-family:Tahoma, Arial, sans-serif;
    margin:0;
    direction:rtl;
}

.movie-container{
    width:90%;
    max-width:1200px;
    margin:60px auto;
    display:flex;
    gap:45px;
    background:#141414;
    padding:35px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.5);
}

.movie-poster{
    width:320px;
    flex-shrink:0;
}

.movie-poster img{
    width:100%;
    height:480px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.7);
}

.movie-details{
    flex:1;
}

.movie-details h1{
    font-size:40px;
    margin-bottom:25px;
    color:#fff;
}

.movie-info{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.movie-info span{
    background:#202020;
    padding:10px 18px;
    border-radius:30px;
    color:#ddd;
    border:1px solid #333;
}

.movie-stats{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin:30px 0;
}

.movie-stats div{
    background:#1d1d1d;
    padding:15px 25px;
    border-radius:15px;
    font-size:18px;
    border:1px solid #333;
}

.description{
    line-height:2;
    color:#ccc;
    font-size:17px;
}

.rating-box{
    margin-top:45px;
    padding:25px;
    background:#181818;
    border-radius:18px;
    border:1px solid #292929;
}

.rating-box h3{
    font-size:24px;
    margin-bottom:20px;
}

.rating-box form{
    display:flex;
    gap:15px;
}

.rating-box select{
    width:180px;
    padding:14px;
    background:#101010;
    color:#fff;
    border:1px solid #333;
    border-radius:10px;
}

.rating-box button{
    background:#e50914;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

.rating-box button:hover{
    background:#b20710;
}

.movie-actions{
    display:flex;
    gap:20px;
    margin-top:35px;
    align-items:center;
}

.watch-trailer,.like-button{
    padding:15px 30px;
    border-radius:12px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
    text-decoration:none;
}

.watch-trailer{
    background:#e50914;
    color:white;
}

.watch-trailer:hover{
    background:#b20710;
}

.like-button{
    background:#202020;
    color:white;
    border:1px solid #333;
}

.like-button:hover{
    background:#e50914;
    border-color:#e50914;
}

.comments-section{
    width:90%;
    max-width:1200px;
    margin:40px auto;
    background:#141414;
    padding:35px;
    border-radius:20px;
}

.comments-section h2{
    font-size:30px;
    margin-bottom:30px;
}

.comment-form textarea{
    width:100%;
    background:#101010;
    color:white;
    border:1px solid #333;
    padding:20px;
    border-radius:15px;
    resize:none;
    font-size:16px;
}

.comment-form button{
    margin-top:15px;
    background:#e50914;
    color:white;
    border:none;
    padding:14px 35px;
    border-radius:12px;
    cursor:pointer;
    font-size:16px;
}

.comment-form button:hover{
    background:#b20710;
}

.comments-list{
    margin-top:40px;
}

.comment-card{
    background:#1b1b1b;
    padding:20px;
    border-radius:15px;
    margin-bottom:20px;
    border:1px solid #292929;
}

.comment-user{
    color:#e50914;
    font-weight:bold;
    margin-bottom:12px;
    font-size:18px;
}

.comment-text{
    color:#ddd;
    line-height:2;
}



