.live-badge {
    background-color: #c62828; /* red background */
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.live-badge i {
    margin-right: 8px;
    color: #ff0000; /* red circle */
    animation: blink 1s infinite;
}

/* Red blinking animation */
@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

.bg-main
{
    background-color: rgb(255, 255, 14);
}

.bg-lightdark{
    background-color: #131111;
}
/* marquee  */
#marquee{
 background-color: rgb(255, 255, 14);
    color: black;
    font-size: 22px;
    font-weight: bold;
}

.marquee-container {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
   

}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* slider  */
  .slider {
    position: relative;
    /* width: 600px; */
    height: 550px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slides img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Navigation buttons */
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 12px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
  }

  .prev { left: 10px; }
  .next { right: 10px; }

  /* Dots */
  .dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
  }

  .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    cursor: pointer;
  }

  .dot.active {
    background: #fff;
  }

   @media (max-width: 768px) {
    .slider{
        height: 230px;
    }
    .prev, .next {
      padding: 8px;
      font-size: 16px;
    }

    .dot {
      width: 10px;
      height: 10px;
    }
  }


  @media (max-width: 885px) {
    .slider{
        height: 300px;
    }
    .prev, .next {
      padding: 8px;
      font-size: 16px;
    }

    .dot {
      width: 10px;
      height: 10px;
    }
  }

   @media (max-width: 415px) {
    .slider{
        height: 200px;
    }
    .prev, .next {
      padding: 8px;
      font-size: 16px;
    }

    .dot {
      width: 10px;
      height: 10px;
    }
  }

  .text-red{
    color: red;
  }