.bottom-fadding-effect {
  /* backdrop-filter: blur(476.29998779296875px); */
  background: linear-gradient(
    360deg,
    rgba(77, 76, 254, 0.56) 0%,
    rgba(46, 45, 152, 0) 63.45%
  );
}
.heading {
  border: 5px solid;
  border-image-source: linear-gradient(
    180deg,
    #ff348d -23.67%,
    rgba(255, 52, 141, 0) 86.53%
  );
  backdrop-filter: blur(24.2px);

  -webkit-text-stroke: 5px rgba(255, 51, 102, 0.3);
  /* font-family: "Arial Black", sans-serif; */
  /* letter-spacing: 0.05em; */

  backdrop-filter: blur(24.200000762939453px);
}
.playGame-bottom-effect {
  background: #24c18d;
  backdrop-filter: blur(476.29998779296875px);
  background: linear-gradient(
    360deg,
    rgba(36, 193, 141, 0.1064) 0%,
    rgba(6, 126, 86, 0) 63.45%
  );
}
.CrashGame-bottom-effect {
  background: linear-gradient(
    360deg,
    rgba(241, 75, 63, 0.11) 0%,
    rgba(241, 75, 63, 0) 63.45%
  );
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes overlayRemove {
  0% {
    transform: scaleY(1); /* fully covered */
  }
  100% {
    transform: scaleY(0); /* removed completely */
  }
}

.animate-overlayRemove {
  animation: overlayRemove 5.5s linear forwards;
}

@keyframes fadeCrash {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadeCrash {
  animation: fadeCrash 0.6s ease-out forwards;
}
.bg-blur {
  background: rgba(9, 11, 21, 0.4); /* translucent so blur is visible */
  backdrop-filter: blur(20px);

  border-top: 1px solid transparent;
  border-image-slice: 1;
  border-image-source: linear-gradient(
    90deg,
    rgba(255, 52, 141, 0) 0%,
    rgba(255, 52, 141, 0.74) 50%,
    rgba(255, 52, 141, 0) 100%
  );
}

@keyframes redPulse {
  0%,
  100% {
    background: linear-gradient(to bottom right, #111827, #450a0a, #111827);
  }
  50% {
    background: linear-gradient(to bottom right, #450a0a, #7f1d1d, #450a0a);
  }
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

/* style.css */

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px); /* move up */
  }
}
@keyframes floatDownUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px); /* move up */
  }
}

/* class that will be toggled when cashed out */
.cashedout-animate {
  animation: floatUpDown 1s ease-in-out ;
}
.opening-animate {
  animation: floatDownUp 1s ease-in-out ;
}

.smooth-wrapper {
  transition: all 0.35s ease;
  overflow: hidden;
}

.smooth-visible {
  opacity: 1;
  height: auto;
}

.smooth-hidden {
  opacity: 0;
  height: 0;
  padding: 0 !important;
  margin: 0 !important;
}
