* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body, html {
  height: 100%;
  width: 100%;
}

.background {
  position: relative;
   background: url('img.png');
  height: 100vh;
  color: white;
}

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

.header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
}

.logo {
  height: 100px;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-select {
  padding: 5px;
  background: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 3px;
}

.sign-in {
  background-color: #e50914;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
}

.content {
    color:white ;
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 100px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.email-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.email-form input {
  padding: 12px;
  font-size: 1rem;
  width: 300px;
  border: none;
  border-radius: 2px;
}

.email-form button {
  padding: 12px 20px;
  font-size: 1rem;
  background-color: #e50914;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 2px;
}







body {
  background-color: #000;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.trending {
  padding: 30px;
}

.trending h2 {
  margin-bottom: 35px;
  font-size: 35px;
}

.cards {
  display: flex;
  gap: 80px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.card {
  position: relative;
  min-width: 160px;
  max-width: 160px;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.card img {
  width: 120%;
  height: 120%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(0,0,0,0.7);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: bold;
  color: white;
}







h1 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}

.card-container {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  width: 25%;
}

.card {
  background: linear-gradient(180deg, #16132f 0%, #23002d 100%);
  border-radius: 12px;
  padding: 24px;
  width: 300;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card h2 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #b1b1b1;
  margin-bottom: 40px; /* space for icon */
}

.icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  object-fit: contain;
}




body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: white;
  padding: 40px;
}

.faq-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  background-color: #2d2d2d;
  border: 1px solid #000;
  border-radius: 2px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-header {
  width: 100%;
  background-color: #333;
  color: white;
  padding: 20px;
  font-size: 18px;
  text-align: left;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header .plus {
  font-size: 28px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  background-color: #1a1a1a;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.accordion-body p {
  margin: 20px 0;
  font-size: 16px;
  color: #ddd;
}






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

.email-section {
  text-align: center;
  padding: 40px 20px;
}

.email-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.email-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  min-width: 250px;
  padding: 16px;
  font-size: 16px;
  background-color: #111;
  color: #fff;
  border: 1px solid #333;
  border-radius: 4px;
}

.email-form button {
  background-color: #e50914;
  color: #fff;
  font-size: 18px;
  padding: 16px 26px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-form button span {
  font-size: 24px;
  line-height: 0;
}






