@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Orbitron:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #8b5cf6;
  --secondary: #ec4899;
  --accent: #0ea5e9;
  --dark: #0f0e17;
  --light: #f8fafc;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
}

.casino-card {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.casino-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.promo-badge {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

.hot-badge {
  background: linear-gradient(45deg, #ef4444, #f97316);
}

.new-badge {
  background: linear-gradient(45deg, #10b981, #06b6d4);
}

.copy-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.copy-notification.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}