.hero {
  height: 100vh; 
   background-image: 
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%),
    url('https://cdn.mos.cms.futurecdn.net/rDJegQJaCyGaYysj2g5XWY.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex: wrap;
  align-items: center;
  justify-content: center;
  color: white;
}

.overlay {
  background: rgba(0, 0, 0, 0.6); 
  width: 100%;
  height: 100%;
  display: flex;
  box-sizing:border-box;
  flex-direction: column;
}

  

  .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


  .logo {
    height: 45px;

  }

   .top-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .language-select {
    background: transparent;
    font-size: large;
    font-family: 'Netflix Sans', Arial, sans-serif;
    padding: 4px 15px;
    color: white;
    border:1px solid #757575;
    border-radius: 3px;
  }


   .language-select option {
  background-color: whitesmoke;
  color: black;
  font-family: 'Netflix Sans', Arial, sans-serif;
  padding: 8px;
}

.main-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem;
}


  
  .main-content h1 {
    font-family: 'Netflix Sans', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    


  }

  .main-content h3 {
  font-family: 'Netflix Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: -20px;
  }

.main-content p {
  
  font-size: 1rem;
  margin-top: 40px;
  font-family: 'Netflix Sans', Arial, sans-serif;

}

   .email-form {
    margin-top: 10px;
  }

  .sign-in-btn {
  color: #fff;
  text-decoration: none;
  font-family: 'Netflix Sans', Arial, sans-serif;;
  background-color: hsl(357, 92%, 47%);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: medium

}

  .email-form input {
    padding: 15px;
    max-width: 500px;
    width: 350px;
    font-size: larger;
    max-width: 100%;
    border: 1px solid gray;
  background-color: transparent;
  color: #fff;
    outline:none;
    font-family: 'Netflix Sans', Arial, sans-serif;
    border-radius: 5px;
  
  
  }

  .email-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
  

  .email-form button {
    padding: 9px 20px;
    width: 200px;
    font-family: 'Netflix Sans', Arial, sans-serif;
    background-color: #e50914;
    color: white;
    font-size: 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

.border-divider {
  width: 100%;
  height:2px;
  background-color: rgba(255, 255, 255, 0.6);
  
}



.trending {
  background-color: #000;
  color: white;
  padding: 20px 40px;
  font-family: 'Netflix Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.trending h2 {
  font-size: 1.875rem;
  font-weight: 400;
  margin-left: 0;
  width: 100%;
  font-family: 'Netflix Sans', Arial, sans-serif;
  max-width: 1200px;
  
}

.scroll-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  max-width: 1400px;
  justify-content: flex-start;
  padding-left: 0;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

.card {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
  height: 300px;
  background-color: #222;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s ease;
}

.card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.rank-number {
  position: absolute;
  bottom: -13px;
  left: -1px;
  font-size: 5rem;
  font-weight: 800;
  color: black;
  -webkit-text-stroke: 1px white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  font-family: 'Arial Black', sans-serif;
  z-index: 2;
  pointer-events: none;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  z-index: 10;
}



.trending {
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}



.scroll-row {
  gap: 12px;
  max-width: 1200px;
  justify-content: flex-start;
  padding-left: 0;
}


@media (max-width: 992px) {
  .trending {
    padding: 16px 30px;
  }
  
  .trending h2 {
    font-size: 1.375rem; 
    margin-bottom: 12px;
    padding-left: 8px;
  }
  
  .scroll-row {
    gap: 10px;
    max-width: 100%;
  }
  
  .card {
    width: 140px;
    height: 210px;
  }
}


@media (max-width: 576px) {
  .trending {
    padding: 12px 20px;
  }
  
  .trending h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    padding-left: 5px;
  }
  
  .scroll-row {
    gap: 8px;
    max-width: 100%;
  }
  
  .card {
    width: 120px;
    height: 180px;
  }
}


 
.reasons {
  background-color: #000000; 
padding: 60px 40px;
margin-top: -50px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

.reasons h2 {
  font-size: 1.875rem; 
  padding: 10px 0;
  
  margin-left: 0;
  color: white;
  margin-bottom: 20px;
  max-width: 1200px;
  font-weight: 400;
  font-family: 'Netflix Sans', Arial, sans-serif;
}

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.reason-card {
  position: relative; 
  background-color: #1f182c;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  min-height: 260px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;

}

.corner-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: 30px;
  width: 30px;
  object-fit: contain;
  pointer-events: none; 
}


.reason-card:hover {
  transform: translateY(-5px);
}

.reason-card img {
  height: 50px;

}

.reason-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-top: 0px;
  font-family: 'Netflix Sans', Arial, sans-serif;
}


.reason-card p {
  margin-top: -10px;
  font-size: medium;
  color:#b3b3b3;
  font-weight: 400;
font-family: 'Netflix Sans', Arial, sans-serif;
  
}

@media screen and (max-width: 1024px) {
  .reason-box {
    flex: 1 1 45%;
  }

  .more-reasons-section {
    padding: 50px 30px;
  }
}

@media screen and (max-width: 768px) {
  .reason-boxes {
    justify-content: center;
  }

  .reason-box {
    flex: 1 1 100%;
    max-width: 90%;
    text-align: center;
  }

  .more-reasons-section {
    padding: 40px 20px;
  }

  .reason-box h3 {
    font-size: 1.1rem;
  }

  .reason-box p {
    font-size: 0.95rem;
  }
}


.faq-section {
  background-color: #000;
  color: #fff;
  padding: 30px 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.faq-container {
  max-width: 1280px; 
  margin: 0 auto;
  padding: 10px;   
}

.faq-container h2 {
  font-size: 1.875rem;
  margin-bottom: 20px;
  font-weight: 400;
  
  font-family: 'Netflix Sans', Helvetica, Arial, sans-serif;
}

.faq-item {
  background-color: #303030;
  margin-bottom: 8px;
  border-bottom: 1px solid #000;
  border: none;
  width: 100%;
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;;
}

.faq-question span {
  font-size: 1.rem;
  font-weight: 500;
  font-style: 'Netflix Sans', Arial, sans-serif;
}

.faq-question .toggle {
  font-size: 2rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 24px 24px 24px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #e5e5e5;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .toggle {
  transform: rotate(45deg);
}

@media (min-width: 600px) {
  .faq-container {
    padding: 0 40px;
  }

  .faq-question {
    padding: 22px 25px;
  }

  .faq-answer {
    padding: 0 25px 22px 25px;
  }

  .faq-question span {
    font-size: 1.1rem;
  }

  .faq-question .toggle {
    font-size: 2.2rem;
  }
}

@media (min-width: 960px) {
  .faq-container {
    max-width: 960px;
    margin: 0 auto;
  }

  .faq-question {
    padding: 25px 30px;
  }

  .faq-question span {
    font-size: 1.25rem;
  }

  .faq-answer {
    font-size: 1.1rem;
    padding: 0 30px 25px;
  }
}
@media (min-width: 1280px) {
  .faq-container {
    max-width: 1200px;
    padding: 0 10px;
  }

  .faq-question {
    padding: 28px
  }

  .faq-question span {
    font-size: 1.4rem;
  }

  .faq-answer {
    font-size: 1.2rem;
    padding: 0 35px 28px;
  }
}




body {
  background-color: #000;
  color: #fff;
  font-family: 'Netflix Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.footer-email-section {
  padding: 2rem 1rem 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  
}

.footer-title {
  font-size: 1rem;
  font-weight: 400;
  color: white;
  font-family: 'Netflix Sans', Arial, sans-serif;
  margin-bottom: 1rem;
}

.email-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.email-input {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #333;
  background: #302929;
  color: white;
  border-radius: 2px;
}

.submit-button {
  background-color: #e50914;
  border: none;
  color: white;
  font-size: 1.2rem;
  padding: 0 1.5rem;
  height: 52px;
  border-radius: 2px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #f40612;
}

.footer-links-section {
  padding: 2rem 1.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
  text-align: left;
}

.footer-contact {
  font-size: 1rem;
  color: #b3b3b3;
  margin-bottom: 3rem;
}

.footer-contact a {
  color: #b3b3b3;
  text-decoration: underline;
}

.footer-links-list {
  list-style: none;
  display: grid;
   grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 1rem 2rem;
  padding: 0;
  margin: 0 0 2rem 0;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.footer-links-list li a {
  color: #b3b3b3;
  text-decoration: none;
}

.footer-links-list li a:hover {
  text-decoration: underline;
  color: white;
}

.footer-language-selector select {
  background: transparent;
  color: white;
  border: 1px solid #757575;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 3px;
}

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #757575;
}



.footer-links-list {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
}


@media (max-width: 900px) {
  .footer-links-list {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 1rem 2rem;
  }
}


@media (max-width: 600px) {
  .footer-links-list {
    grid-template-columns: 1fr;
    gap: 0.5rem 0;
  }

  .footer-links-section {
    padding: 2rem 1rem 1rem;
  }

  .footer-copy,
  .footer-language-selector {
    text-align: left;
  }

  .footer-language-selector select {
    width: 100%;
    max-width: 250px;
  }
}
