@import url('https://fonts.googleapis.com/css2?family=Madimi+One&family=Metrophobic&family=Mina:wght@400;700&family=Nanum+Myeongjo:wght@400;700;800&display=swap'); /* heading font */



/* Container */
    .celebrity-container {
      height: 100%;
      max-width: 90vw;
      /* margin: 0 auto; */
      /* padding: 0 1rem; */
      background-color: black;
      overflow-x: hidden;
    }

  

    @keyframes glow {
      from {
        text-shadow: 0 0 20px #00bcd4;
      }

      to {
        text-shadow: 0 0 30px #00bcd4, 0 0 40px #00bcd4;
      }
    }
    


    /* Slider Section */
    .slider-section {
      padding: 3rem 0;
      /* background: rgba(255, 255, 255, 0.05); */
      /* backdrop-filter: blur(5px); */
      /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
      border-bottom: 1px solid rgba(255, 255, 255, 0);
    }

    .celebrity-slider-title {
      text-align: left;
      padding-left: 5%;
      color: rgb(26, 239, 247);
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      margin-bottom: 2rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      animation: glow 6s ease-in-out infinite alternate;
      position: relative;

        font-family: "Metrophobic", sans-serif;
  font-weight: 400;
  font-style: normal;
    }
    .celebrity-slider-title::after{
      content: "";
      position: absolute;
      width: 40vw;
      height: 4px;
      align-self: center;
      margin-left: 10px;
background: linear-gradient(135deg, #00bcd4, #000);
    }

     .celebrity-slider-container {
      width: 100vw;
       height: 298px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow-x: hidden;
    }

    .celebrity-slider-track {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .celebrity-slide {
      position: absolute;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 16px;
      transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      cursor: pointer;
      border: 2px solid #00bcd4;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }

    .celebrity-slide-image {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .celebrity-slide-name {
      position: absolute;
      bottom: -21px;
      width: 90vw;
      color: white;
      font-weight: bold;
      font-size: 16px;
    }

    .celebrity-slide.celebrity-slide--center {
      transform: scale(2.2);
      z-index: 10;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
      border: 3px solid #00bcd4;
    }

    .celebrity-slide.celebrity-slide--left {
      transform: translateX(-120px) scale(0.8);
      opacity: 0.7;
      z-index: 5;
    }

    .celebrity-slide.celebrity-slide--right {
      transform: translateX(120px) scale(0.8);
      opacity: 0.7;
      z-index: 5;
    }

    .celebrity-slide.celebrity-slide--far-left {
      transform: translateX(-250px) scale(0.5);
      opacity: 0.4;
      z-index: 1;
    }

    .celebrity-slide.celebrity-slide--far-right {
      transform: translateX(250px) scale(0.5);
      opacity: 0.4;
      z-index: 1;
    }

    .celebrity-slide.celebrity-slide--hidden-left {
      transform: translateX(-400px) scale(0.3);
      opacity: 0;
    }

    .celebrity-slide.celebrity-slide--hidden-right {
      transform: translateX(400px) scale(0.3);
      opacity: 0;
    }

    .celebrity-slider-controls {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 20px;
    }

    .celebrity-control-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      border: 2px solid rgba(255, 255, 255, 0.4);
      color: white;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      display: none;
    }

    .celebrity-control-btn:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: scale(1.1);
    }

    @keyframes celebrity-pulse {

      0%,
      100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
      }

      50% {
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
      }
    }

    .celebrity-slide.celebrity-slide--center {
      animation: celebrity-pulse 2s infinite;
    }

   

    /* Mobile Optimizations */
    @media (max-width: 768px) {

       .celebrity-slider-title::after{
        width: 40vw;
       }

  
    }

    @media (max-width: 480px) {
       .celebrity-slider-title::after{
        display: none;
       }
       .celebrity-slider-container {
    width: 100vw;
    height: 298px;
    position: relative;
    display: flex
;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}
     

      .container {
        padding: 0 0.5rem;
      }
    }