/* ============================================
   RIZZIO CASINO - CUSTOM STYLES
   Dark Blue Electric Vegas Theme
   ============================================ */

/* === KEYFRAME ANIMATIONS === */

/* Parallax float animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Marquee scroll animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Glow pulse animation */
@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 60px rgba(59, 130, 246, 0.5);
  }
}

/* Neon flicker */
@keyframes neon-flicker {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.8), 0 0 20px rgba(59, 130, 246, 0.6);
  }
  50% {
    text-shadow: 0 0 20px rgba(59, 130, 246, 1), 0 0 40px rgba(59, 130, 246, 0.8);
  }
}

/* === UTILITY CLASSES === */

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

.glow-effect {
  animation: glow-pulse 2s ease-in-out infinite;
}

.neon-text {
  animation: neon-flicker 1.5s ease-in-out infinite;
}

/* === PROSE STYLING FOR READABILITY === */

.prose {
  color: #e5e7eb;
  line-height: 1.75;
}

.prose h2 {
  color: #3b82f6;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.prose h3 {
  color: #60a5fa;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}

.prose ul,
.prose ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose strong {
  color: #3b82f6;
  font-weight: 600;
}

.prose a {
  color: #3b82f6;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.prose a:hover {
  color: #60a5fa;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.prose th {
  background: rgba(59, 130, 246, 0.2);
  padding: 0.75rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.prose td {
  padding: 0.75rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* === CUSTOM SCROLLBAR === */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: #3b82f6;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #60a5fa;
}

/* === SIDEBAR TRANSITIONS === */

.sidebar-transition {
  transition: transform 0.3s ease-in-out;
}

/* === GAME CARD HOVER EFFECTS === */

.game-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* === CTA BUTTON EFFECTS === */

.cta-button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

/* === TRUSTPILOT STAR RATING === */

.star-rating {
  color: #00b67a;
  font-size: 1.25rem;
}

/* === PAYMENT METHOD ICONS === */

.payment-icon {
  filter: grayscale(0.3);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.payment-icon:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

/* === MOBILE MENU OVERLAY === */

.mobile-menu-overlay {
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.95);
}

/* === STICKY BOTTOM MENU === */

.bottom-menu-island {
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.95);
}

/* === CALCULATOR FORM === */

.calculator-island {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  backdrop-filter: blur(10px);
}

/* === RESPONSIVE UTILITIES === */

@media (max-width: 1023px) {
  .sidebar-mobile-hidden {
    transform: translateX(-100%);
  }

  .sidebar-mobile-visible {
    transform: translateX(0);
  }
}

/* === VEGAS ELECTRIC BACKGROUND === */

.vegas-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
  position: relative;
}

.vegas-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* === SMOOTH SCROLL === */

html {
  scroll-behavior: smooth;
}
