/* Custom styles for the crackers landing site */
.glow {
  box-shadow: 0 0 0 rgba(255, 215, 0, 0.6);
  transition: box-shadow 0.3s ease;
}
.glow:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.9), 0 0 40px rgba(255, 0, 0, 0.4);
}
.gradient-text {
  background: linear-gradient(90deg, #ff3b3b, #ffd166, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.star-bg {
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
}
.backdrop-blur-md {
  backdrop-filter: blur(10px);
}


