* { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: Arial, sans-serif; background: #111; color: #fff; }

    .navbar {
      display: flex; justify-content: space-between; align-items: center;
      padding: 15px; background: #222;
    }

    .navbar img { height: 40px; }
    .nav-links { display: flex; align-items: center; gap: 15px; }
    .nav-links a { color: white; text-decoration: none; margin: 0 5px; }

    .search-bar {
      padding: 5px; border-radius: 5px; border: none;
    }

    .banner {
      height: 50vh;
      background-size: cover;
      background-position: center;
      background-color: #131313;
      background-blend-mode: lighten;
      display: flex;
      align-items: center;
      padding: 20px;
    }

    .title {
      background: rgba(0, 0, 0, 0.281);
      padding: 30px;
      border-radius: 30px;
      text-align: center;
      box-shadow: 10px 00px 30px black;
      transition: 0.3s;
      
    }
    .title:hover{
      color: rgb(255, 123, 0);
      background-color: rgba(24, 24, 24, 0.74);
      box-shadow: 10px 00px 30px rgb(255, 136, 0);
    }

    .row {
      margin: 20px;
    }

    .row h2 {
      margin-bottom: 10px;
    }

    .list {
      display: flex;
      overflow-x: auto;
      height:auto;
      overflow-y: hidden;
      scrollbar-color: rgba(59, 59, 59, 0.521) transparent;
      transition: 0.5s;
    }
    .list:hover{
      scrollbar-color: rgba(78, 78, 78, 0.521) transparent;
    }
    .list img {
      width: 150px;
      margin-right: 10px;
      cursor: pointer;
      border-radius: 5px;
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .list img:hover {
      transform: scale(1.05);
      filter: brightness(1.2);
      z-index: 2;
    }

    .modal {
      position: fixed;
      top: 0; left: 0;

      width: 100%; 
      height: 100%;
      background: #222;
      display: none;

      
      
      z-index: 10;
    }

    .modal-content {
      background: red;
      padding: 20px;
     

      max-width: 600px;
      text-align: center;
      position: relative;
  
    }

    .modal img {
      
     
      z-index: -1;
      position: inherit;


    }
    .poster {
      display: flex;
      width: 100%;
      z-index:-2

    }

    .stars { color: gold; }
    .close {
      position: absolute;
      top: 10px; right: 20px;
      cursor: pointer;
      font-size: 24px;
    }

    .server-selector {
      position: absolute;
      bottom: 10px; left: 10px;
    }

    .search-modal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.9);
      display: none;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      z-index: 15;
    }

    .search-modal input {
      width: 300px;
      padding: 10px;
      border-radius: 5px;
      border: none;
      margin-bottom: 20px;
      font-size: 20px;
      transition: 0.5s;
    }

    .search-modal input:focus {
      box-shadow: 0px 0px 20px 5px red;
      font-size: 35px;
      width: 50%;
    }

    .search-modal .results {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      overflow: auto;
    }

    .search-modal img {
      width: 120px;
      border-radius: 5px;
      cursor: pointer;
    }

    .search-modal .close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 30px;
    }

    .movtitle{
      visibility: hidden;
      display: flex;
      z-index: -5;

    }
    .movdisc{
      visibility: hidden;
      display: flex;
      z-index: -5;
    }
    .vplayer{
      display: flex;
      width: 100%;
      height: 100%;


    }

    .modal-video{
 
      width: 100%;
      border:0px;
      
    }
    
