:root {
  --vid-s-bg: #913d1b;
  --vid-s-accent: #f7b731;
  --vid-s-text: #ffffff;
}

.splide__arrow--prev svg {
  transform: scaleX(1) !important;
}

#best_moments {
  font-family: "Poppins", sans-serif;
  background-color: var(--vid-s-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  color: var(--vid-s-text);
  width: 100%;
  text-align: center;
  padding: 40px 0 86px 0px;
  box-sizing: border-box;
}

#best_moments .vid-s-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#best_moments .vid-s-pill {
  background-color: #ffffff;
  color: #000;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

/* Slider Container Scoped */
#best_moments .vid-s-wrapper {
  position: relative;
  padding: 0 40px;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}

#best_moments .splide__slide {
  padding: 10px;
}

#best_moments .vid-s-card {
  border: 4px solid var(--vid-s-accent);
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 0 0 20px rgba(247, 183, 49, 0.4);
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
}

#best_moments .vid-s-card img {
  width: 100%;
  height: 100%;
  /* object-fit: cover;
  display: block; */
}

/* Custom Arrows Scoped strictly to this section */
#best_moments .splide__arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

#best_moments .splide__arrow {
  width: 40px;
  height: 40px;
  background: #ffffff !important;
  opacity: 1 !important;
  pointer-events: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#best_moments .splide__arrow svg {
  fill: #913d1b;
  width: 20px;
  height: 20px;
}

#best_moments .splide__arrow--prev {
  left: -10px;
}

#best_moments .splide__arrow--next {
  right: -10px;
}

/* Custom Pagination Scoped strictly to this section */
#best_moments .splide__pagination {
  position: relative;
  bottom: -30px;
  counter-reset: vid-s-counter;
}

#best_moments .splide__pagination__page {
  width: 35px;
  height: 35px;
  background: transparent !important;
  border: 2px solid #ffffff !important;
  opacity: 1 !important;
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
}

#best_moments .splide__pagination__page::before {
  counter-increment: vid-s-counter;
  content: counter(vid-s-counter);
}

#best_moments .splide__pagination__page.is-active {
  background: #ffffff !important;
  color: #913d1b;
  transform: scale(1.1);
}

/* Responsive */
@media (min-width: 768px) {
  #best_moments .vid-s-wrapper {
    max-width: 1000px;
  }
}

@media (max-width: 500px) {
  #best_moments .vid-s-title {
    font-size: 1.8rem;
  }

  #best_moments .vid-s-pill {
    font-size: 1rem;
    padding: 8px 20px;
  }

  #best_moments .splide__pagination__page {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

/* jhuli videos */

#jhuli-section {
  font-family: "Poppins", sans-serif;
  background-color: rgb(202 98 39);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  color: var(--vid-s-text);
  width: 100%;
  text-align: center;
  padding: 40px 0 86px 0px;
  box-sizing: border-box;
}

#jhuli-section .vid-s-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#jhuli-section .vid-s-pill {
  background-color: #ffffff;
  color: #000;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

/* Slider Container Scoped */
#jhuli-section .vid-s-wrapper {
  position: relative;
  padding: 0 40px;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}

#jhuli-section .splide__slide {
  padding: 10px;
}

#jhuli-section .vid-s-card {
  border: 4px solid var(--vid-s-accent);
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 0 0 20px rgba(247, 183, 49, 0.4);
  aspect-ratio: 16 / 9;
}

#jhuli-section .vid-s-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom Arrows Scoped strictly to this section */
#jhuli-section .splide__arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

#jhuli-section .splide__arrow {
  width: 40px;
  height: 40px;
  background: #ffffff !important;
  opacity: 1 !important;
  pointer-events: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#jhuli-section .splide__arrow svg {
  fill: #913d1b;
  width: 20px;
  height: 20px;
}

#jhuli-section .splide__arrow--prev {
  left: -10px;
}

#jhuli-section .splide__arrow--next {
  right: -10px;
}

/* Custom Pagination Scoped strictly to this section */
#jhuli-section .splide__pagination {
  position: relative;
  bottom: -30px;
  counter-reset: vid-s-counter;
}

#jhuli-section .splide__pagination__page {
  width: 35px;
  height: 35px;
  background: transparent !important;
  border: 2px solid #ffffff !important;
  opacity: 1 !important;
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
}

#jhuli-section .splide__pagination__page::before {
  counter-increment: vid-s-counter;
  content: counter(vid-s-counter);
}

#jhuli-section .splide__pagination__page.is-active {
  background: #ffffff !important;
  color: #913d1b;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 500px) {
  #jhuli-section .vid-s-title {
    font-size: 1.8rem;
  }

  #jhuli-section .vid-s-pill {
    font-size: 1rem;
    padding: 8px 20px;
  }

  #jhuli-section .splide__pagination__page {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

/* future videos */

#future-section {
  font-family: "Poppins", sans-serif;
  background-color: rgb(245 130 32);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  color: var(--vid-s-text);
  width: 100%;
  text-align: center;
  padding: 40px 0 86px 0px;
  box-sizing: border-box;
}

#future-section .vid-s-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#future-section .vid-s-pill {
  background-color: #ffffff;
  color: #000;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

/* Slider Container Scoped */
#future-section .vid-s-wrapper {
  position: relative;
  padding: 0 40px;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}

#future-section .splide__slide {
  padding: 10px;
}

#future-section .vid-s-card {
  border: 4px solid var(--vid-s-accent);
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 0 0 20px rgba(247, 183, 49, 0.4);
  aspect-ratio: 16 / 9;
}

#future-section .vid-s-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom Arrows Scoped strictly to this section */
#future-section .splide__arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

#future-section .splide__arrow {
  width: 40px;
  height: 40px;
  background: #ffffff !important;
  opacity: 1 !important;
  pointer-events: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#future-section .splide__arrow svg {
  fill: #913d1b;
  width: 20px;
  height: 20px;
}

#future-section .splide__arrow--prev {
  left: -10px;
}

#future-section .splide__arrow--next {
  right: -10px;
}

/* Custom Pagination Scoped strictly to this section */
#future-section .splide__pagination {
  position: relative;
  bottom: -30px;
  counter-reset: vid-s-counter;
}

#future-section .splide__pagination__page {
  width: 35px;
  height: 35px;
  background: transparent !important;
  border: 2px solid #ffffff !important;
  opacity: 1 !important;
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
}

#future-section .splide__pagination__page::before {
  counter-increment: vid-s-counter;
  content: counter(vid-s-counter);
}

#future-section .splide__pagination__page.is-active {
  background: #ffffff !important;
  color: #913d1b;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 500px) {
  #future-section .vid-s-title {
    font-size: 1.8rem;
  }

  #future-section .vid-s-pill {
    font-size: 1rem;
    padding: 8px 20px;
  }

  #future-section .splide__pagination__page {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

.parody-videos {
  width: 100%;
  height: 100%;
}