body {
  margin: 0;
  padding: 0;
  background-color: black;
  font-family: Poppins;
}

.background {
  position: relative;
  background-image: url(Assests/the_netflix_login_background__canada__2024___by_logofeveryt_dh0w8qv.jpg);
  height: 100vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.background > *:not(.overlay) {
  position: relative;
  z-index: 2;
}

.footer {
  width: 80%;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 8.5rem 1rem 8.3rem;
}

.footer-img img {
  height: 3.1rem;
}

.footer-buttons button {
  font-size: 14px;
  margin-right: 0.2rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem 0.5rem 0.9rem;
  border-radius: 5px;
}

.signOut {
  background-color: rgb(229, 9, 20);
  color: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
  transition: linear 0.2s all;
}

.signOut:hover {
  background-color: rgb(201, 14, 24);
}

.dropDown {
  color: rgb(255, 255, 255);
  background-color: rgb(000, 000, 000, 0);
  border: 1px solid rgb(255, 255, 255, 0.5);
}

.dropDown i {
  margin-left: 0.6rem;
}

.outer-div{
  width: 100%;
  height: 100vh;
}

.inner-div{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.heading h1{
  text-align: center;
  color: white;
  font-size: 55px;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.heading p{
  text-align: center;
  margin-top: 0.5rem;
  font-size: 19px;
  color: white;
  font-weight: 500;
}

.sign-up-button{
  margin-top: 1rem;
}

.sign-up-button button{
  font-size: 20px;
  padding: 1rem 2rem 1rem 2rem;
  font-weight: 600;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  background-color: rgb(229, 9, 20);
  transition: linear 0.2s all;
}

.sign-up-button button:hover{
  background-color: rgb(201, 14, 24);
}

.sign-up-button i{
  margin-left: 0.5rem;
}

.movie-heading {
  width: 100%;
}

.movie-heading h2{
  text-align: left;
}

.movies {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.movies-cards {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  overflow-x: auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  margin: 0 auto;
}

.movies-cards::-webkit-scrollbar {
  height: 8px;
}
.movies-cards::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

.movies-cards img {
  margin: 0;
  height: 300px;  
  width: 200px;
  border-radius: 10px;
  object-fit: cover;
  transition: linear 0.2s all;
}

.movies-cards img:hover{
  transform: scale(1.02);
}


@media (max-width: 900px) {
  .movies {
    padding: 1rem;
  }
  .movies-cards img {
    height: 200px;
    width: 130px;
  }
}

@media (max-width: 600px) {
  .movies {
    padding: 0.5rem;
  }
  .movies-cards {
    gap: 0.7rem;
  }
  .movies-cards img {
    height: 140px;
    width: 90px;
  }
}

.reasons-section {
  margin: 3rem auto 0 auto;
  max-width: 1300px;
  padding: 0 2rem;
}
.reasons-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.reasons-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
.reason-card {
  background: linear-gradient(135deg, #231942 0%, #3a0ca3 100%);
  color: #fff;
  border-radius: 22px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.2);
}
.reason-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.reason-card p {
  font-size: 1.1rem;
  color: #d1c4e9;
  margin-bottom: 2.5rem;
}
.reason-icon {
  position: absolute;
  right: 1.5rem;
  bottom: 1.2rem;
  font-size: 2.5rem;
  color: #ff61c7;
  opacity: 0.95;
}
@media (max-width: 900px) {
  .reasons-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .reason-card {
    max-width: 350px;
    margin: 0 auto;
  }
  .reasons-section {
    padding: 0 1rem;
  }
}

.faq-section {
  max-width: 1300px;
  margin: 3rem auto 0 auto;
  padding: 0 2rem 2rem 2rem;
}
.faq-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: #333;
  border: 2px solid #111;
  border-radius: 2px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #444;
}
.faq-icon {
  font-size: 2rem;
  transition: transform 0.2s;
}
.faq-answer {
  display: none;
  color: #fff;
  background: #222;
  font-size: 1.1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid #111;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-signup-btn {
  margin-top: 2rem;
  background: #e50914;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-signup-btn:hover {
  background: #b0060f;
}

.site-footer {
  background-color: #000;
  padding: 4rem 2rem;
  color: #737373;
  font-size: 0.9rem;
  margin-top: 3rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.footer-call {
  margin-bottom: 1.5rem;
}

.footer-call a {
  color: #737373;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 200px;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #737373;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.lang-selector {
  margin-bottom: 1.5rem;
}

.lang-btn {
  background-color: #000;
  color: #737373;
  border: 1px solid #737373;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-btn i {
  font-size: 1rem;
}

.copyright {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
  }
  .reasons-section {
    padding: 0 1rem;
  }
}

@media (max-width: 1024px) {
  .heading h1 {
    font-size: 45px;
  }
  .heading p {
    font-size: 17px;
  }
  .sign-up-button button {
    font-size: 18px;
    padding: 0.8rem 1.8rem;
  }
  .footer {
    padding: 1rem 4rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px; 
  }
  .heading h1 {
    font-size: 35px;
  }
  .heading p {
    font-size: 16px;
  }
  .sign-up-button button {
    font-size: 16px;
    padding: 0.7rem 1.5rem;
  }
  .footer {
    flex-direction: column;
    padding: 1rem 2rem;
    align-items: center;
  }
  .footer-img {
    margin-bottom: 1rem;
  }
  .footer-buttons button {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .dropDown, .signOut {
    width: 100%;
    text-align: center;
  }
  .movies {
    padding: 0.5rem 1rem;
  }
  .reasons-title,
  .faq-title {
    font-size: 1.8rem;
  }
  .faq-question {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
  }
  .faq-answer {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
  .faq-signup-btn {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
  }
  .site-footer {
    padding: 3rem 1rem;
  }
  .footer-links ul {
    flex-basis: 100%;
  }
}

@media (max-width: 600px) {
  .heading h1 {
    font-size: 28px;
  }
  .heading p {
    font-size: 15px;
  }
  .sign-up-button button {
    font-size: 14px;
    padding: 0.6rem 1.2rem;
  }
  .reasons-title,
  .faq-title {
    font-size: 1.5rem;
  }
  .faq-question {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
  }
  .faq-answer {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }
  .faq-signup-btn {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
}