* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #001f3f, #6a0dad);
  color: white;
}

.container {
  text-align: center;
}

h1 {
  font-size: 4em;
  margin-bottom: 30px;
}

.movie-options {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.movie {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  padding: 10px;
  border-radius: 5px;
  width: 120px;
  text-align: center;
  margin: 0 10px;
  font-size: 1.2em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.movie:hover {
  color: #6a0dad;
  background-color: rgba(255, 255, 255, 0.3);
  border-color: #001f3f;
}

.coming-soon {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  color: white;
}
