#loading-container {
    transition: opacity 0.5s ease-out;
}
#progress-bar {
    transition: width 0.2s linear;
}

/* 2xl adjust ads location */
@media (min-width: 1500px) {
    #left-ad {
        left: max(24px, calc((100vw - 70vw) / 2 - 180px)) !important;
    }
    #right-ad {
        right: max(24px, calc((100vw - 70vw) / 2 - 180px)) !important;
    }
}

/* ads not fixed style */
.ads-absolute {
    position: absolute !important;
    top: 100vh !important;
    transform: translateY(-50%) !important;
}

.sprunki-more-games-text::before {
    content: "More Sprunki Games";
    margin-right: 0.5rem;
}

.sprunki-more-text::before {
    content: "More Games";
    margin-right: 0.5rem;
}

.sprunki-more-games-text-2::before {
    content: "More";
    margin-right: 0.5rem;
}

.progress-animation {
	animation: progress 60s linear;
}
@keyframes progress {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

.game-gallery-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.game-gallery-section .swiper {
  width: 100%;
  max-width: 1200px;
}

.swiper-slide {
  transition: all 0.3s ease;
  opacity: 0.65;
  transform: scale(0.85);
  filter: saturate(0.75);
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1.2);
  z-index: 20;
  filter: saturate(1.25);
}

.swiper-slide-active .game-card {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(99, 102, 241, 0.8);
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.5);
}

.swiper-button-next, .swiper-button-prev {
  color: white;
  background: rgba(79, 70, 229, 0.4);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: rgb(99, 102, 241);
  opacity: 1;
}

@media (max-width: 768px) {
  .swiper-slide-active {
    transform: scale(1.15) !important;
  }
}