body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #000;
    color: #fff
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.main {
    background-image: url("https://cdn.wallpapersafari.com/24/74/zgeTuV.jpg");
    background-size: cover;
    background-position: center;
    height: calc(100vh - 10px);
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    position: relative;
    z-index: 1
}

header button {
    background-color: #e50914;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

header button:hover {
    background-color: #f40612;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 0 20px;
    width: 90%;
    max-width: 650px;
}

.hero-content h1 {
    color: white;
    font-size: 60px;
    font-weight: 800;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    color: #ccc;
}


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

.email-form input {
    flex: 1;
    padding: 16px;
    font-size: 16px;
    border-width: 0px;
    border-radius: 4px;
    outline: none;
    border: 1px solid #fff;
    max-width: 400px;
    background-color: #000;
    color: #fff
}

.email-form button {
    padding: 16px 24px;
    background-color: #e50914;
    color: white;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
}

.email-form input::placeholder {
    color: #999;
}


.movie-gallery {
  display: flex;
  overflow-x:auto ;
  gap: 2rem;
  padding: 1rem;
  scroll-behavior: smooth;
  scrollbar-width: none; 
  background-color: #000;
}


.movie-gallary::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}

.movie-item {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
  color: white;
  text-align: center;
  transition: 0.4s ease;
 
}

.movie-item:hover{
    transform: scale(1.08);
}

.movie-img {
  width: 100%;
  cursor: pointer;
  height: 300px;
  border-radius: 8px;
}


.movie-rank {
  position: absolute;
  bottom: 0px;
  left: 8px;
  color: grey;
  font-weight: bold;
  font-size: 100px;
  padding: 4px 8px;
  border-radius: 4px;
}

.reasons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #000;
}

.reason-card {
  background: linear-gradient(to bottom, #1b1b2f, #34495E);
  border-radius: 16px;
  padding: 1.5rem;
  flex: 1 1 250px;
  max-width: 320px;
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.reason-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.reason-card p {
  font-size: 1rem;
  line-height: 1.4;
  color:#cccccc;
  margin-bottom: 1rem;
}

.reason-card img {
  width: 100px;
  height: 100px;
  align-self: flex-end;
  
}


.middle-container{
    padding: 20px 40px;
}

.faq-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.faq-container h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.faq-container details {
  background: #222;
  margin-bottom: 10px;
  padding: 20px;
  border: none;
  cursor: pointer;
}

.faq-container details:hover{
    background-color: #2e2e2e;
    
}

.faq-container summary {
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  list-style: none;
}

.faq-container summary::marker {
  display: none;
}

.faq-container summary::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.5rem;
}

.faq-container details[open] summary::after {
  content: '×';
}

.faq-container details p {
  margin-top: 15px;
  font-size: 1.3rem;
  line-height: 1.5;
}


.footer {
  background-color: black;
  color: #999;
  padding: 40px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}



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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap:10px;
  margin:20px 0px;
  justify-content: space-evenly;
}

.footer-p{
    margin-left: 190px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.lang {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 14px;
  border: 1px solid #999;
  width: fit-content;
  cursor: pointer;
}

.country{
    margin-top:20px;
    margin-bottom: 20px;
}
.captcha-note {
  font-size: 12px;
}
