.movie-page{
  max-width:1100px;
  margin:40px auto;
  padding:20px;
}

.movie-top{
  display:flex;
  gap:40px;
}

.movie-poster{
  width:280px;
  border-radius:8px;
}

.movie-info{
  flex:1;
}

.movie-info p{
  line-height:1.7;
  color:#ccc;
}

.download-btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 20px;
  background:#ff9800;
  color:#000;
  font-weight:bold;
  text-decoration:none;
}

.screenshots{
  display:flex;
  flex-direction:column;   /* stack vertically */
  gap:20px;                /* space between screenshots */
  margin-top:20px;
}

.screenshots img{
  width:100%;              /* full width */
  max-width:100%;
  border-radius:8px;
  object-fit:cover;
}


/* OTHER MOVIES STRIP */
.other-strip{
  background:#0f0f0f;
  padding:10px 0;
  border-bottom:1px solid #222;
}

.strip-inner{
  display:flex;
  gap:15px;
  overflow-x:auto;
  padding:0 20px;
}

.strip-inner img{
  height:80px;
  border-radius:6px;
}
