

.glass-deal-btn {
  position: relative;
  padding: 1rem 2rem;
  font-weight: bold;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(0, 20, 30, .9), rgba(0, 35, 50, .9), rgba(0, 50, 70, .9));
  font-size:2.5rem;
  border: 5px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Pulse on hover */
.glass-deal-btn:hover {
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.6);
  transform: scale(1.03);
}

/* Shimmer effect */
.glass-deal-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

*{
  box-sizing: border-box;
}

#showcase_number{
  font-size:25px;
  color:white;
  text-align: center;
  position: absolute;
  right:0%;
  padding:15px;
  top:15%;
  z-index:9999993939939393939393939393;
  font-weight:700;
  box-shadow:0rem 2rem 4rem black;
  background:#00103d;
}
