/* 88 Bos Google Play Store Theme Styles */
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Hide scrollbars across browsers */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}

.scrollbar-none {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Effect Berkilau (Shimmer / Shine) for Install, WhatsApp, and Telegram Buttons */
.btn-shimmer {
  position: relative !important;
  overflow: hidden !important;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -125%;
  width: 65%;
  height: 200%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 25%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmer-sweep 2.6s infinite ease-in-out;
  pointer-events: none;
  z-index: 10;
}

/* Slight stagger delay for social buttons so shine looks dynamic */
.btn-shimmer-delay-1::after {
  animation-delay: 0.3s;
}

.btn-shimmer-delay-2::after {
  animation-delay: 0.6s;
}

@keyframes shimmer-sweep {
  0% {
    left: -125%;
  }
  32% {
    left: 145%;
  }
  100% {
    left: 145%;
  }
}

