 body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: black;
      color: aqua;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 70px;
      padding: 0 20px;
      background-color: black;
      border-bottom: 1px solid white;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }

    #logo img {
      height: 50px;
    }

    #nav-links {
      list-style: none;
      display: flex;
      align-items: center;
    }

    #nav-links li {
      margin: 0 15px;
    }

    #nav-links a {
      text-decoration: none;
      color: aqua;
      font-weight: bold;
    }

    #menu-icon {
      display: none;
      font-size: 28px;
      color: white;
      cursor: pointer;
    }


@keyframes bounce {
    0% {
        opacity: 0;
        transform: translateY(-20px);

    }
    100%  {
        opacity: 1;
        transform: translateY(0);

    }
}

.slider {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .slides {
      display: flex;
      width: 400%;
      animation: slide 80s infinite linear;
    }

    .slide {
      display: flex;
      justify-content: space-around;
      align-items: center;
      width: 100%;
      
    }

    .slide img {
      width: 180px;
      height: 250px;
      border-radius: 80px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    @keyframes slide {
      0%   { transform: translateX(0%); }
      25%  { transform: translateX(-100%); }
      50%  { transform: translateX(-200%); }
      75%  { transform: translateX(-300%); }
      100% { transform: translateX(0%); }
    }

 
.search-container {
    position: relative;
    width: 200px;
    animation: bounce 0.8s ease-in-out;
}
#searchBox {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 20px;
    animation: bounce 0.9s ease-in-out;
}
.popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: aqua;
    color: black;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
}
.popup div {
    padding: 10px;
    cursor: pointer;
}
.popup div:hover {
    background-color: #0b64eb;
}

.banner {
    text-align: center;
    padding: 50px;
    background: url('banner.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner-buttons .btn {
    padding: 20px 40px;
    margin: 10px;
    background-color: aqua;
    color: black;
    border: 2px;
    border-radius: 30px;
    font-size: 30px;
    cursor: pointer;
    
}


.demand-area {
    text-align: center;
    padding: 20px;
    background-color: transparent;
    margin-top: 20px;
}
.footer {
    text-align: center;
    padding: 10px;
    background-color: aqua;
    color: rgb(7, 7, 7);
    margin-top: 20px;
}
li {
    display: flex;
    align-items: center;
    float: left;
    padding: 30px;
}
.scroll-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    padding: 10px;
    scroll-behavior: smooth;
    max-width: 100%;
    
}
.scroll-container li {
    list-style: none;
    flex: 0 0 auto;
}
.scroll-container img {
    display: block;
    border-radius: 50px;

}


.menu-icon {
    font-size: 24px;
    cursor: pointer;
    background-color: black;

    display: none;
    color: white;
}
.btn{
    background-color: aqua;
    color: black;
    border-radius: 30px;
}


#series{
    width: 45%;
    height: 28px;
    border-radius: 50px;
    border: 2px rgb(194, 190, 190) solid;
    background-color: rgb(23, 23, 24);
    color: rgb(252, 248, 248);
    font-size: large;
}
#btn{
    background-color: rgb(6, 248, 236);
    color: rgb(14, 13, 13);
    height: 30px;
    width: 70px;
    border-radius: 50px;
    border: none;
}


/* mobile view*/
@media screen and (max-width: 768px) {
  #menu-icon {
    display: block;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: black;
    padding: 10px 0;
  }

  #nav-links.active {
    display: flex;
  }

  #nav-links li {
    text-align: center;
    padding: 10px 0;
  }

 h1 {
  color: #0ff; /* Neon cyan color */
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  font-family: serif;
  font-variant: small-caps;
  font-style: italic;
  white-space: nowrap; /* Prevents line break */
   animation: bounce 0.8s ease-in-out;
  margin: 0; /* Remove unwanted vertical spacing */
  padding: 0;
}

/* Glowing animation */
/*@keyframes glow {
  from {
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
  }
  to {
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff;
  }
}*/

  .search-container {
    position: relative;
    width: 100%;
    margin: 10px auto;
    animation: bounce 0.8s ease-in-out;
    margin-left: 60px;
  }

  #searchBox {
    width: 550px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    animation: bounce 0.9s ease-in-out;
    margin-left: -30px;
  }

  .popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 550px;
    background: aqua;
    color: black;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
  }

  .popup div {
    padding: 10px;
    cursor: pointer;
  }

  .popup div:hover {
    background-color: #0b64eb;
  }

  #logo img {
    height: 35px;
    animation: bounce 0.9s ease-in-out;
    margin-left: 30px;
  }

  .scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px;
    scroll-behavior: smooth;
    width: 100%;
    margin: 0 auto;
  }

  .scroll-container li {
    list-style: none;
    flex: 0 0 auto;
  }

  .scroll-container img {
    display: block;
    border-radius: 10px;
    height: 120px;
    width: 80px;
  }

  marquee {
    width: 100%;
    display: block;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 10px;
    background-color: black;
    border-bottom: 1px solid white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }

  .footer {
    text-align: center;
    padding: 10px;
    background-color: aqua;
    color: #070707;
    margin-top: 20px;
    width: 100%;
  }

  .slider {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .slide-track {
    width: 100%;
  }

  .demand-area {
    text-align: center;
    padding: 20px;
    background-color: transparent;
    margin-top: 20px;
  }

  .demand-area h2 {
    margin-left: 0;
    font-size: 20px;
  }

  #btn {
    background-color: rgb(6, 248, 236);
    color: #0e0d0d;
    height: 35px;
    width: 90px;
    border-radius: 50px;
    border: none;
    margin-top: 25px;
  }

  .banner {
    text-align: center;
    padding: 20px;
    background: url('banner.jpg') no-repeat center center/cover;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
  }

  #movie-form {
    width: 90%;
    margin: 0 auto;
  }

  #series {
    width: 100%;
    height: 40px;
    border-radius: 50px;
    border: 2px solid rgb(194, 190, 190);
    background-color: rgb(23, 23, 24);
    color: white;
    font-size: medium;
  }
}
