/* stylesheet_6.css - Interactive Visual Effects (Glass & Neon) */
.glass-panel {
  background: rgba(12, 28, 74, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.neon-glow {
  box-shadow: 0 0 20px rgba(100, 255, 53, 0.2);
}

.neon-border {
  border: 1px solid rgba(99, 102, 241, 0.5);
}

.casino-click-target {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.casino-click-target:active {
  transform: scale(0.98);
}