    /* RESET */
    * {
      margin: 0; padding: 0; box-sizing: border-box;
    }

     body {
      background-color: #ff0000;
      color: rgb(255, 255, 255);
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 30px;
      margin-bottom: 40px;
    }

.s01{
  margin-bottom: 40px;
  padding: 30px;
}

.s02{
  margin-bottom: 40px;
  
}
    /* HEADER */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(36, 33, 33, 0.75);
      backdrop-filter: blur(15px);
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      height: 70px;
      display: flex;
      align-items: center;
    }

    /* Top Bar */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
 
  z-index: 1000;
}


    .logo {
      font-size: 26px;
      font-weight: 700;
      color: #08f;
      cursor: pointer;
      user-select: none;
      letter-spacing: 2px;
    }

    /* NAVIGATION */
    nav.nav-links {
      display: flex;
      gap: 26px;
    }
    nav.nav-links a {
      position: relative;
      color: #ddd;
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      padding: 6px 0;
      transition: color 0.3s ease;
    }
    nav.nav-links a:hover,
    nav.nav-links a:focus {
      color: #08f;
    }
    nav.nav-links a::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #08f;
      transition: width 0.3s ease;
    }
    nav.nav-links a:hover::after,
    nav.nav-links a:focus::after {
      width: 100%;
    }

    /* AUTH BUTTONS */
    .auth-buttons {
      display: flex;
      gap: 16px;
    }
    .auth-buttons a {
      color: #08f;
      border: 1.5px solid #08f;
      padding: 7px 20px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease;
      user-select: none;
    }
    .auth-buttons a:hover {
      background-color: #08f;
      color: #000;
      cursor: pointer;
    }

    /* MOBILE MENU TOGGLE */
    .menu-toggle {
      display: none;
      font-size: 30px;
      color: #08f;
      cursor: pointer;
      user-select: none;
    }

    /* HERO SLIDER CONTAINER */
    .hero-slider {
      margin-top: 70px; /* height of fixed header */
      max-width: 12500px;
      height: 90vh;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.7);
      background-color: #000;
      
    }

    /* SLIDES WRAPPER */
    .slides-wrapper {
      display: flex;
      height: 100%;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    /* EACH SLIDE */
    .slide {
      flex: 0 0 100%;
      height: 100%;
      background-position: center;
      background-size: cover;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding-left: 50px;
      padding-bottom: 90px;
      user-select: none;
  
    }
    .slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%,  #0e1e25 100%);
      z-index: 0;
      
    }

    /* SLIDE CONTENT */
    .slide-info {
      position: relative;
      max-width: 600px;
      color: #fff;
      z-index: 2;
    }
    .slide-info h1 {
      font-size: 52px;
      font-weight: 700;
      margin-bottom: 15px;
      text-shadow: 0 0 15px rgba(0,0,0,0.75);
    }
    .details {
      font-size: 17px;
      margin-bottom: 22px;
      color: #ffffff;
      letter-spacing: 0.02em;
    }
    .watch-btn {
      background-color: #08f;
      color: #000;
      padding: 16px 38px;
      font-weight: 700;
      border-radius: 35px;
      text-decoration: none;
      font-size: 20px;
      box-shadow: 0 4px 18px #08f;
      transition: background-color 0.3s ease;
      display: inline-block;
      user-select: none;
    }
    .watch-btn:hover {
      background-color: #06c;
      cursor: pointer;
    }

    /* NAVIGATION DOTS */
    .dots {
      position: absolute;
      bottom: 25px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 16px;
      z-index: 10;
      user-select: none;
    }
    .dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .dot.active,
    .dot:hover {
      background: #08f;
    }

    /* RESPONSIVE */

    @media (max-width: 1024px) {
      .slide-info h1 {
        font-size: 42px;
      }
      .details {
        font-size: 15px;
      }
      .watch-btn {
        font-size: 18px;
        padding: 14px 34px;
      }
          
    }

    @media (max-width: 768px) {
      nav.nav-links,
      .auth-buttons {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-height: calc(100vh - 70px);
        background: #121217;
        flex-direction: column;
        gap: 18px;
        padding: 30px 40px;
        transition: right 0.3s ease;
        z-index: 1100;
        overflow-y: auto;
        user-select: auto;
      }

      .hero-slider {
      margin-top: 70px; /* height of fixed header */
      max-width: 12000px;
      height: 50vh;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.7);
      background-color: #000;
    }

      nav.nav-links.active,
      .auth-buttons.active {
        right: 0;
      }
      nav.nav-links {
        flex-direction: column;
      }
      nav.nav-links a {
        font-size: 22px;
      }
      .auth-buttons {
        flex-direction: row;
        justify-content: center;
      }
      .auth-buttons a {
        font-size: 18px;
      }
      .menu-toggle {
        display: block;
      }
      .slide-info {
        max-width: 90%;
        padding-right: 20px;
      }
      .slide-info h1 {
        font-size: 28px;
      }
      .details {
        font-size: 14px;
        margin-bottom: 15px;
      }
      .watch-btn {
        font-size: 16px;
        padding: 12px 28px;
      }
      .dots {
        bottom: 15px;
        gap: 12px;
      }
      .dot {
        width: 12px;
        height: 12px;
      }
    }

   
    h2 {
      margin-bottom: 5px;
      font-size: 22px;
    }

    .divider {
      border: none;
      height: 2px;
      background: #222;
      margin: 10px 0;
    }

    .caption {
      margin: 0 0 15px;
      font-size: 14px;
      color: #aaa;
    }

    .language-row {
      display: flex;
      flex-wrap: nowrap;
      gap: 25px;
      padding-bottom: 10px;
    }

    .language-card {
      flex: 1;
    }

    .language-card a {
      display: block;
      width: 100%;
      height: 100%;
    }

    .language-card img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      transition: filter 0.3s ease;
    }

    .language-card img:hover {
      filter: grayscale(100%);
    }

    /* Mobile/Tablet: scrollable */
    @media (max-width: 768px) {
      .language-row {
        overflow-x: auto;
        scrollbar-width: none;
      }

      .language-row::-webkit-scrollbar {
        display: none;
      }

      .language-card {
        flex: 0 0 auto;
        width: 130px;
      }
    }
      body {
      margin: 0;
      background: #0d0c15;
      font-family: 'Poppins', sans-serif;
      color: white;
    }

    h2 {
      margin-bottom: 15px;
      font-size: 22px;
    }

    .network-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 20px;
    }

    .network-item {
      background: #111;
      border-radius: 20px;
      overflow: hidden;
      width: 100%;
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .network-item a {
      display: block;
      width: 100%;
      height: 100%;
    }

    .network-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: filter 0.3s ease;
      border-radius: 20px;
      pointer-events: none;
      user-select: none;
    }

    .network-item:hover img {
      filter: grayscale(100%);
    }

    /* Mobile/Tablet */
    @media (max-width: 768px) {
      .network-section {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 15px;
        padding-bottom: 10px;
        scrollbar-width: none;
      }

      .network-section::-webkit-scrollbar {
        display: none;
      }

      .network-item {
        flex: 0 0 auto;
        width: 80px;
        height: 80px;
      }

      .network-item img {
        border-radius: 15px;
      }
      .s01{
    margin-bottom: 10px;
  padding: 30px;
}
    }


 .search-box {
  max-width: 600px;
  margin: 50px auto;
  position: relative;
}

.input-wrapper {
  display: flex;
  border: 2px solid #00d9ff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 12px #00d9ff80;
  background: #10161f;
}

.input-wrapper input {
  flex: 1;
  padding: 16px;
  font-size: 1rem;
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
}

.input-wrapper button {
  background: #00d9ff;
  border: none;
  padding: 0 20px;
  font-weight: bold;
  color: #000;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 0;
  transition: 0.3s;
}

.input-wrapper button:hover {
  background: #00c1e4;
}

  
    .dropdown-results {
      position: absolute;
      top: 100%;
      width: 100%;
      background: #111820;
      max-height: 300px;
      overflow-y: auto;
      border: 1px solid #00d9ff40;
      border-radius: 0 0 10px 10px;
      z-index: 10;
      margin-top: 5px;
    }

    .dropdown-results a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 15px;
      color: #fff;
      text-decoration: none;
      border-bottom: 1px solid #222;
      transition: 0.2s;
    }

    .dropdown-results a:hover {
      background: #1c2630;
    }

    .dropdown-results img {
      width: 40px;
      height: 60px;
      object-fit: cover;
      border-radius: 4px;
    }

    @media (max-width: 600px) {
      .search-box input {
        font-size: 0.9rem;
        padding: 14px;
      }

      .search-box button {
        padding: 0 14px;
        font-size: 0.9rem;
      }
    }