/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #141414;
    color: #ffffff;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #000000;
    border-bottom: 2px solid #e50914;
  }
  
  .logo h1 {
    font-size: 1.8rem;
    color: #e50914;
  }
  
  .nav ul {
    display: flex;
    list-style: none;
  }
  
  .nav ul li {
    margin: 0 15px;
  }
  
  .nav ul li a {
    transition: color 0.3s ease;
  }
  
  .nav ul li a:hover {
    color: #e50914;
  }
  
  /* Full-Screen Hero Section */
  .full-screen {
    position: relative;
    height: 100vh;
    background-image: url('https://i.pinimg.com/736x/19/8b/2f/198b2f01e73b905772279616eccc7c65.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
/* Responsive Adjustments */

/* Tablets (max-width: 768px) */
@media (max-width: 500px) {
    .movie-container {
      gap: 10px;
    }
  
    .movie-card {
      width: 220px;
    }
  
    h2 {
      font-size: 1.8rem;
    }
  }
  
  /* Mobile Landscape (max-width: 480px) */
  @media (max-width: 480px) {
    .movie-container {
      gap: 8px;
      padding: 5px;
    }
  
    .movie-card {
      width: 180px;
    }
  
    h2 {
      font-size: 1.5rem;
    }
  
    .movie-card p {
      font-size: 0.9rem;
    }
  }
  
  /* Mobile Portrait (max-width: 360px) */
  @media (max-width: 360px) {
    .movie-container {
      gap: 5px;
      padding: 5px;
    }
  
    .movie-card {
      width: 150px;
    }
  
    h2 {
      font-size: 1.3rem;
    }
  
    .movie-card p {
      font-size: 0.8rem;
    }
  }
  .full-screen .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .full-screen .hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
  }
  
  .full-screen h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .full-screen p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta-button {
    padding: 10px 20px;
    background: #e50914;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background: #b20610;
  }
  
  /* Section Styles */
  .section {
    padding: 50px 20px;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* Slider Styles */
  .slider {
    display: flex;
    gap: 15px;
    overflow-x: scroll;
  }
  
  .slider::-webkit-scrollbar {
    display: none;
  }
  
  .slide {
    min-width: 300px;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .slide:hover {
    transform: scale(1.1);
  }
  
  /* FAQ Section */
  .faq-section {
    background: #1c1c1c;
    padding: 50px;
  }
  
  .faq {
    margin-bottom: 20px;
  }
  
  .faq h3 {
    font-size: 1.5rem;
    color: #e50914;
  }
  
  .faq p {
    margin-top: 10px;
    color: #b3b3b3;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 15px;
    background: #000;
    color: #b3b3b3;
  }
  .question-section {
    background-color: #222;
    border-radius: 10px;
}
.faq-item {
    border-bottom: 1px solid #333;
    padding: 15px 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: bold;
}
.faq-answer {
    display: none;
    margin-top: 10px;
    color: var(--secondary-text);
}
.faq-item.active .faq-answer {
    display: block;
}

@media screen and (max-width: 600px)
{
    
}
