

.slider{
    background-color: #6100004b;
    width: 100%;
    box-shadow: 0 0 30px 5px rgb(255, 167, 140);
    height: var(--height);
    overflow: hidden;
    border: 2px solid #ff000000;
    mask-image: linear-gradient(
        to right,
        transparent,
        #ffffff 10% 90%,
        transparent
    );
}
.slider .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}
.slider .list .item{
    width: 315px;;
    height: 100px;
    position: absolute;
    left: 100%;
    animation: autoRun 18s linear infinite;
    transition: filter 6s;
    animation-delay: calc( (12s / var(--quantity)) * (var(--position) - 1) - 10s)!important;
}
.slider .list .item img{
    width: 100%;
    border-radius: 5%;
}
@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(var(--width) * -1);
    }
}
.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}
.slider .item:hover{
    filter: grayscale(0);
}
.slider[reverse="true"] .item{
    animation: reversePlay 10s linear infinite;
}
@keyframes reversePlay{
    from{
        left: calc(var(--width) * -1);
    }to{
        left: 100%;
    }
}




.slider2{
  width: 100%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(
      to right,
      transparent,
      #000 10% 90%,
      transparent
  );
}
.slider2 .list2{
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}
.slider2 .list2 .item2{
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 10s linear infinite;
  transition: filter 0.5s;
  animation-delay: calc( (10s / var(--quantity)) * (var(--position) - 1) - 10s)!important;
}
.slider2 .list2 .item2 img{
  width: 100%;
}


.slider2:hover .item2{
  animation-play-state: paused!important;
  filter: grayscale(1);
}
.slider2 .item2:hover{
  filter: grayscale(0);
}
.slider2[reverse="true"] .item2{
  animation: reversePlay 10s linear infinite;
}





.stats {
    display: flex;
    justify-content: center; /* Center the content horizontally */
  }
  
  .stat-list {
    list-style: none; /* Remove default bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    display: flex; /* Display list items in a row */
    gap: 10px; /* Add spacing between items */
  }
  
  .stat-item {
    display: inline-block; /* Ensure items stay in a row */
  }



  .header-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .live-indication {
    font-size: 14px;
    font-weight: bold;
    color: #ff0000;
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }




  
        .schedule-container {
            width: 90%;
            max-width: 600px;
            background: linear-gradient(135deg, #111, #222);
            border: 1px solid #444;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
        }

        .schedule-header {
            margin-bottom: 20px;
            text-align: left;
        }

        .schedule-header h1 {
            font-size: 2rem;
            color: #fcca03;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .schedule-header p {
            font-size: 1.2rem;
            margin: 5px 0 0;
            color: #fff;
            font-weight: bold;
        }

        .schedule-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            margin-bottom: 10px;
            background: #333;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
            font-size: 1.1rem;
            text-transform: uppercase;
            font-weight: bold;
        }

        .schedule-item span {
            flex: 1;
            text-align: left;
            color: #fff;
        }

        .schedule-item .time {
            text-align: right;
            color: #fcca03;
        }

        @media (max-width: 768px) {
            body {
                align-items: flex-start;
                padding-top: 20px;
            }

            .schedule-container {
                width: 95%;
                padding: 15px;
            }

            .schedule-header h1 {
                font-size: 1.8rem;
            }

            .schedule-header p {
                font-size: 1rem;
            }

            .schedule-item {
                font-size: 1rem;
                padding: 10px;
            }
        }

        @media (max-width: 480px) {
            .schedule-container {
                padding: 10px;
            }

            .schedule-header h1 {
                font-size: 1.5rem;
            }

            .schedule-header p {
                font-size: 0.9rem;
            }

            .schedule-item {
                padding: 8px;
                font-size: 0.9rem;
                flex-direction: column;
                align-items: flex-start;
            }

            .schedule-item .time {
                text-align: left;
                margin-top: 5px;
            }
        }