body {
    background-color: #111;
    color: white;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
  }
  

  
  .dropdown-container {
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 3px;
    display: none;
  }
  
  .dropdown {
    background-color: black;
    padding: 8px;
    border-radius: 4px;
    width: 100px;
  }
  
  .dropdown span {
    cursor: pointer;
  }
  
  .original-movies {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .container
  {
    width: 100%;
    min-width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .profile:hover .dropdown-container {
    display: block;
  }
  
  #upcoming,
  .movies-container {
    padding-left:1rem;

    display: flex;
    gap:1rem;
    flex-wrap: wrap;
  
  }
  
  #upcoming::-webkit-scrollbar {
    display: none;
  }
  
  #upcoming img {
    margin-right: 10px;
  }
  
  #upcoming img,
  .movies-container img {
    transition: all 0.2s ease-out;
    cursor: pointer;
  }
  
  #upcoming img:hover,
  .movies-container img:hover {
    transform: scale(1.1);
  }
  
  .movies-container img {
  
    width: 200px;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 15px;
  }
  
  
  .profile {
    position: relative;
  }
  
  .profile > img {
    width: 40px;
  }
  
  img {
    width: 100px;
  }
  
  .featured {
    height: 1000px;
    position: relative;
    background-image: url('https://image.tmdb.org/t/p/original/x4biAVdPVCghBlsVIzB6NmbghIz.jpg');
    background-size: cover;
    background-position: center;
    padding: 0 0 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .featured-after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 7.4rem;
    background-image: linear-gradient(180deg, transparent, rgba(37, 37, 37, 0.61), #111);
  }
  
  .netflix-originals h2,
  .movies-header h2 {
    font-size: 50px;
    padding-left: 30px;
  }
  
  .featured h2 {
    font-size: 50px;
    margin: 0;
    z-index: 10;
  }
  
  .featured .featured-buttons {
    z-index: 10;
  }
  
  .featured .featured-buttons button {
    font-size: 16px;
    color: white;
    background-color: rgba(109, 109, 110, 0.7);
    border: none;
    padding: 8px 24px;
    border-radius: 4px;
  }
  
  .featured-before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .featured .featured-buttons .button-play {
    background-color: white;
    color: black;
  }
  
  .button-play i {
    margin-right: 6px;
  }
  
  .featured .featured-description {
    max-width: 350px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.45);
    z-index: 10;
  }
  
  .modal-body iframe {
    width: 100%;
  }
  
  .modal-body span {
    color: #333;
    width: 100%;
    display: flex;
    height: 60px;
    justify-content: center;
    align-items: center;
  }
  

  /* Navbar Styles */
.nav {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.4s ease;
  z-index: 1000;
}

.logo
{
  width:300px;
  
}
.nav .logo a {
  text-decoration: none;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav .logo a:hover {
  color: #00E676;
}

.nav .main_list {
 
  display: flex;
  align-items: center;
  margin-right: 3rem;
}

.nav .main_list ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav .main_list ul li {
  margin: 0 1.5rem;
}

.nav .main_list ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.nav .main_list ul li a:hover {
  color: #00E676;
}

/* Responsive Navbar */
.navTrigger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
}

.navTrigger i {
  background-color: #fff;
  border-radius: 2px;
  display: block;
  width: 100%;
  height: 4px;
  transition: all 0.4s ease;
}

.navTrigger i:nth-child(2) {
  margin: 5px 0;
}

.navTrigger.active i:nth-child(1) {
  transform: translateY(9px) rotate(135deg);
}

.navTrigger.active i:nth-child(2) {
  opacity: 0;
}

.navTrigger.active i:nth-child(3) {
  transform: translateY(-9px) rotate(-135deg);
}

/* Mobile View */
@media screen and (max-width: 1100px) {
  .navTrigger {
    display: block;
  }
  
  .nav .main_list {
    position: absolute;
    top: 0px;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  
  .nav .main_list ul {
    flex-direction: column;
    width: 100%;
  }
  
  .nav .main_list ul li {
    margin: 20px 0;
  }
  
  .nav .main_list ul li a {
    font-size: 3rem;
    display: block;
    text-align: center;
  }
  
  .nav .main_list.show_list {
    transform: translateX(0);
  }
}

.main_list {
  display: flex; /* Make it a flex container */
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.main_list.show_list {
  opacity: 1;
  /* It will automatically be visible when the show_list class is added */
}

@media screen and (max-width:585px)

{
 .logo
 {
  width: 200px !important;
 }

 .nav .logo a
 {
  font-size:1.5rem
 }

 #upcoming,
  .movies-container {
    overflow-x: scroll;
    overflow: scroll;
    padding-left: 30px;
    flex-wrap:nowrap;
  }

  .navTrigger
  {
    margin-right: 2rem;
  }

  .netflix-originals h2,
  .movies-header h2 {
    font-size: 2rem !important;

  }
}

