 /*body {
      margin: 0;
      padding: 0;
      background: #1e232e;
      font-family: 'Poppins', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }*/

    .slider-container {
  margin: 0;
  padding: 0;
  background: #1e232e;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}


    .swiper {
      width: 100%;
      max-width: 960px;
      padding: 50px 10px;
    }

    .swiper-slide {
      background: #1b1f2a;
      border: 4px solid #0099ff;
      border-radius: 20px;
      overflow: hidden;
      width: 90%;
      max-width: 300px;
      height: 420px;
      display: flex;
      flex-direction: column;
      padding: 10px;
      box-sizing: border-box;
      color: #ccc;
      transition: box-shadow 0.4s ease-in-out;
    }

    .swiper-slide img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 2px solid #0099ff;
      border-radius: 10px;
      margin-bottom: 10px;
      flex-shrink: 0;
    }

    .swiper-slide p {
      font-size: 1rem;
      margin: 0 0 10px 0;
      flex-grow: 1;
      
      overflow-y: auto;
      max-height: 100px;
      padding-right: 6px;
      word-wrap: break-word;
      scrollbar-width: thin;
      scrollbar-color: #0099ff transparent;
    }

    .swiper-slide p::-webkit-scrollbar {
      width: 6px;
    }

    .swiper-slide p::-webkit-scrollbar-thumb {
      background-color: #0099ff;
      border-radius: 3px;
    }

    .like-btn {
      background: #0099ff;
      border: none;
      color: white;
      font-size: 1.1rem;
      padding: 10px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      width: 100%;
      border-radius: 0 0 16px 16px;
      margin-top: auto;
    }

    .like-btn:hover {
      background-color: #007acc;
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: #0099ff;
    }

    .swiper-pagination-bullet {
      background: #fff;
      opacity: 0.6;
    }

    .swiper-pagination-bullet-active {
      background: #0099ff;
      opacity: 1;
    }

    .swiper-slide.active-glow {
      box-shadow: 0 0 30px 10px #00ccff;
    }

    @media (max-width: 768px) {
      .swiper-slide {
        max-width: 90%;
        height: auto;
      }
      .swiper {
        padding: 30px 5px;
      }
    }

    @media (max-width: 480px) {
      .swiper-slide {
        height:auto;
        padding: 8px;
      }
      .swiper-slide img {
        height: 180px;
      }
      .swiper-slide p {
        font-size: 0.9rem;
        max-height: 80px;
      }
      .like-btn {
        font-size: 1rem;
        padding: 8px;
      }
    }















   