                    .search-container {
    position: relative;
}

.search-input {
    height: 50px;
    border-radius: 30px;
    padding-left: 35px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #888;
}
       
      
      body, header {
          margin: 0;
          padding: 0;
          font-family: cursive;
          text-align: center;
      }

      header {
          background: #1e1e1e;
          padding: 15px 20px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-wrap: wrap;
      }

      nav {
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%;
          position: relative;
      }

      .logo img {
          height: 50px;
      }

      .nav-links {
          list-style: none;
          display: flex;
          gap: 20px;
      }

      .nav-links li {
          display: inline;
      }

      .nav-links a {
          color: #ffffff;
          text-decoration: none;
          font-size: 18px;
          transition: color 0.3s ease;
      }

      .nav-links a:hover {
          color: #ff4757;
      }

      .menu-toggle {
          display: none;
          background: none;
          border: none;
          color: #ffffff;
          font-size: 24px;
          cursor: pointer;
          margin-left: auto;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
           nav {
              flex-direction: row;
              justify-content: space-between;
          }

          .logo {
              flex-grow: 1;
              text-align: left;
          }

          .logo img {
              height: 45px;
          }

          .menu-toggle {
              display: block;
              order: 2;
          }
}


          .nav-links {
              display: none;
              flex-direction: column;
              position: absolute;
              top: 60px;
              right: 0;
              background: #1e1e1e;
              width: 200px;
              padding: 10px;
              z-index: 10;
          }

          .nav-links.show {
              display: flex;
          }
          /* Search bar mobile adjustment */
          .search-container {
              width: 100%;
              margin-top: 10px;
              text-align: center;
          }
          .search-input {
              width: 90%;
          }
      }

        body {
            background-color: #121212;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            text-align: center;
        }

        h1 {
            margin: 0;
        }
        
        .anime-list {
            margin: 20px;
        }
        .anime {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 10px;
            justify-content: center;
            padding: 10px;
        }
        .anime-card {
            background: #222;
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .anime-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        .anime-card img {
            width: 100%;
            border-radius: 10px;
            aspect-ratio: 1.5/2;
        }
        a {
            text-decoration: none;
            color: #fff;
        }
        .theme-toggle {
            margin: 20px;
            padding: 10px 20px;
            background: #444;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            color: white;
            font-size: 16px;
        }
        footer {
            background: #1e1e1e;
            padding: 10px;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
     @media (max-width: 400px) {
    .anime {
        display: grid;
        grid-template-columns: repeat(3, minmax(100px, 1fr)); /* 3 इमेज प्रति रो */
        gap: 8px; /* गैप को थोड़ा कम किया */
        padding: 5px; /* किनारों से स्पेसिंग */
    }
    .anime-card img {
        width: 100%;
        border-radius: 8px; /* कोनों को थोड़ा कम गोल किया */
        aspect-ratio: 1/1.5;
        object-fit: cover;
    }
}


 body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    text-align: center;
}
.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}
iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
}
.episode-buttons {
    margin-top: 20px;
}
button {
    background-color: #ff4757;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
}
button:hover {
    background-color: #e84118;
}
   .blog {
            margin-top: 40px;
            text-align: left;
            background-color: #1e1e1e;
            padding: 20px;
            border-radius: 10px;
        }
        .blog h2 {
            color: #ff4757;
        }
 body {
            font-family: Arial, sans-serif;
            background-color: #121212;
            color: white;
            text-align: center;
        }
        .container {
            max-width: 800px;
            margin: auto;
            padding: 20px;
        }
        iframe {
            width: 100%;
            height: 450px;
            border: none;
            border-radius: 10px;
        }
        .blog-section {
            margin-top: 40px;
            text-align: left;
            background: #1e1e1e;
            padding: 20px;
            border-radius: 10px;
        }
        .blog-section h2 {
            color: #ffcc00;
        }
        .blog-section p {
            font-size: 16px;
            line-height: 1.6;
        }
	    .server-buttons {
            margin-top: 20px;
        }
        .server-buttons button {
            background-color: #ffcc00;
            border: none;
            padding: 10px 15px;
            margin: 5px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
        }
                    .search-container {
    position: relative;
}

.search-input {
    height: 50px;
    border-radius: 30px;
    padding-left: 35px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #888;
}
       
      
      body, header {
          margin: 0;
          padding: 0;
          font-family: cursive;
          text-align: center;
      }

      header {
          background: #1e1e1e;
          padding: 15px 20px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-wrap: wrap;
      }

      nav {
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%;
          position: relative;
      }

      .logo img {
          height: 50px;
      }

      .nav-links {
          list-style: none;
          display: flex;
          gap: 20px;
      }

      .nav-links li {
          display: inline;
      }

      .nav-links a {
          color: #ffffff;
          text-decoration: none;
          font-size: 18px;
          transition: color 0.3s ease;
      }

      .nav-links a:hover {
          color: #ff4757;
      }

      .menu-toggle {
          display: none;
          background: none;
          border: none;
          color: #ffffff;
          font-size: 24px;
          cursor: pointer;
          margin-left: auto;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
           nav {
              flex-direction: row;
              justify-content: space-between;
          }

          .logo {
              flex-grow: 1;
              text-align: left;
          }

          .logo img {
              height: 45px;
          }

          .menu-toggle {
              display: block;
              order: 2;
          }
}


          .nav-links {
              display: none;
              flex-direction: column;
              position: absolute;
              top: 60px;
              right: 0;
              background: #1e1e1e;
              width: 200px;
              padding: 10px;
              z-index: 10;
          }

          .nav-links.show {
              display: flex;
          }
          /* Search bar mobile adjustment */
          .search-container {
              width: 100%;
              margin-top: 10px;
              text-align: center;
          }
          .search-input {
              width: 90%;
          }
      }

        body {
            background-color: #121212;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            text-align: center;
        }

        h1 {
            margin: 0;
        }
        
        .anime-list {
            margin: 20px;
        }
        .anime {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 10px;
            justify-content: center;
            padding: 10px;
        }
        .anime-card {
            background: #222;
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .anime-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        .anime-card img {
            width: 100%;
            border-radius: 10px;
            aspect-ratio: 1.5/2;
        }
        a {
            text-decoration: none;
            color: #fff;
        }
        .theme-toggle {
            margin: 20px;
            padding: 10px 20px;
            background: #444;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            color: white;
            font-size: 16px;
        }
        footer {
            background: #1e1e1e;
            padding: 10px;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
     @media (max-width: 400px) {
    .anime {
        display: grid;
        grid-template-columns: repeat(3, minmax(100px, 1fr)); /* 3 इमेज प्रति रो */
        gap: 8px; /* गैप को थोड़ा कम किया */
        padding: 5px; /* किनारों से स्पेसिंग */
    }
    .anime-card img {
        width: 100%;
        border-radius: 8px; /* कोनों को थोड़ा कम गोल किया */
        aspect-ratio: 1/1.5;
        object-fit: cover;
    }
}


 body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    text-align: center;
}
.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}
iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
}
.episode-buttons {
    margin-top: 20px;
}
button {
    background-color: #ff4757;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
}
button:hover {
    background-color: #e84118;
}
   .blog {
            margin-top: 40px;
            text-align: left;
            background-color: #1e1e1e;
            padding: 20px;
            border-radius: 10px;
        }
        .blog h2 {
            color: #ff4757;
        }

 body {
            font-family: Arial, sans-serif;
            background-color: #121212;
            color: white;
            text-align: center;
        }
        .container {
            max-width: 800px;
            margin: auto;
            padding: 20px;
        }
        iframe {
            width: 100%;
            height: 450px;
            border: none;
            border-radius: 10px;
        }
        .episode-buttons {
            margin-top: 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            justify-content: center;
        }
        .episode {
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #222;
            padding: 10px;
            border-radius: 5px;
        }
        .episode img {
            width: 100%;
            height: auto;
            border-radius: 5px;
            aspect-ratio: 16/9;
        }
        .episode button {
            background-color: #ff4757;
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 5px;
            margin-top: 5px;
        }
        .episode button:hover {
            background-color: #e84118;
        }
          .blog {
            margin-top: 40px;
            text-align: left;
            background-color: #222;
            padding: 20px;
            border-radius: 5px;
        }

.episode-title {
            margin-top: 10px;
            font-size: 20px;
            font-weight: bold;
            background-color: #333;
            padding: 10px;
            border-radius: 5px;
        }
