body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: black;
  color: white;
}

.hero-section {
  position: relative;
  background: url('https://images.pexels.com/photos/1239291/pexels-photo-1239291.jpeg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  width: 150px;
}

.nav-buttons {
  display: flex;
  gap: 20px;
}

.lang-select {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 6px 10px;
  border-radius: 3px;
}

.sign-in {
  background-color: #e50914;
  border: none;
  color: white;
  padding: 6px 16px;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  margin: auto;
  margin-bottom: 80px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content h2 {
  font-size: 1.625rem;
  font-weight: normal;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.email-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.email-form input {
  padding: 16px;
  font-size: 1rem;
  width: 60%;
  max-width: 400px;
  border: none;
  border-radius: 2px;
}

.email-form button {
  background-color: #e50914;
  border: none;
  color: white;
  padding: 16px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 2px;
  font-weight: bold;
}

.features {
  background-color: black;
  padding: 60px 20px;
}

.feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto 60px;
  gap: 30px;
}

.feature.reverse {
  flex-direction: row-reverse;
}

.feature img {
  width: 100%;
  max-width: 500px;
}

.feature .text {
  flex: 1;
  max-width: 500px;
}

.feature h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
}

.feature p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.media-box {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.device-img {
  width: 100%;
  display: block;
  z-index: 1;
}

.overlay-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 73%;
  height: 54%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
}

/* Optional Specific Tweaks */
.overlay-video.tv {
  top: 20.5%;
  left: 13%;
  width: 73%;
  height: 54%;
  transform: none;
}

.overlay-video.devices {
  top: 34%;
  left: 50%;
  width: 60%;
  height: 45%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content h2 {
    font-size: 1.25rem;
  }
  .feature {
    flex-direction: column;
  }
  .email-form input,
  .email-form button {
    width: 100%;
  }
}
