* {
  margin: 0;
  border: 0;
  display: flex;
  color: white;
}
body {
  display: flex;
  flex-direction: column;
  background-color: rgb(39, 33, 33);
  margin-left: 30px;
}
/* navbar layout */
.icons{
  display: flex;
  gap: 20px;
  margin-left: 40px;
  color: white;
  font-size: 30px;
}
.navbar{
  display: flex;
  align-items: center;
  margin: 20px;
}

.navbar h1{
  color: red;
  margin: 0;
}

/* push menu to right */
.navbar ul{
  display: flex;
  gap: 30px;
  list-style: none;
  margin-left: 80px; 
  margin-right: 200px ;  /* ⭐ moves menu to right end */
  padding: 0;
}
.movie {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.movie div {
  display: flex;
  gap: 10px;
}
.movie img {
  width: 270px;
  height: 180px;
}
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(190deg, black, red);
}

/* help section */
.help {
  display: flex;
  align-items: center; /* vertical align */
  gap: 10px;
  margin: 20px;
}

/* button text center */
.help button {
  color: black;
  width: 100px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* language box text center */
.lang {
  color: white;
  margin: 20px;
  width: 120px;
  padding: 8px;
  text-align: center;
  background-color: black;
}

/* list in row */
.list ul {
  display: flex; /* IMPORTANT */
  flex-direction: column;
  gap: 25px; /* spacing */
  margin: 20px;
  padding: 0;
  list-style: none;
}
