/* Money Mask - The Mask Movie Vibe Theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap');

:root {
  --mask-green: #7FFF00;
  --mask-yellow: #FFD700;
  --mask-blue: #00BFFF;
  --mask-purple: #9370DB;
  --gradient-start: #E0F7FF;
  --gradient-end: #B8E6FF;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  background-attachment: fixed;
}

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

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(127, 255, 0, 0.5), 0 0 40px rgba(127, 255, 0, 0.3);
  }
  50% { 
    box-shadow: 0 0 40px rgba(127, 255, 0, 0.8), 0 0 80px rgba(127, 255, 0, 0.5);
  }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

@keyframes slide-in-right {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scale-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes tilt {
  0%, 100% { transform: perspective(1000px) rotateY(-5deg); }
  50% { transform: perspective(1000px) rotateY(5deg); }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countdown {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(0.8); }
}

/* Utility classes */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

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

.wiggle-animation {
  animation: wiggle 0.5s ease-in-out infinite;
}

.tilt-animation {
  animation: tilt 4s ease-in-out infinite;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

/* CTA Buttons - Mask style */
.btn-mask-primary {
  background: linear-gradient(135deg, var(--mask-green) 0%, #32CD32 100%);
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(127, 255, 0, 0.4);
}

.btn-mask-primary:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 35px rgba(127, 255, 0, 0.6);
}

.btn-mask-secondary {
  background: linear-gradient(135deg, var(--mask-yellow) 0%, #FFA500 100%);
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-mask-secondary:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

/* Hero Pattern Background */
.hero-pattern {
  background-color: #4299e1;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(127, 255, 0, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.05) 10px, rgba(255,255,255,.05) 20px);
}

/* Card Effects */
.card-mask {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(127, 255, 0, 0.3);
  transition: all 0.3s ease;
}

.card-mask:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--mask-green);
}

/* Slot Game Cards */
.slot-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.slot-card:hover {
  transform: scale(1.05);
  z-index: 10;
}

.slot-card img {
  transition: transform 0.3s ease;
}

.slot-card:hover img {
  transform: scale(1.1);
}

/* Badge Styles */
.badge-jackpot {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 12px;
  animation: scale-pulse 2s ease-in-out infinite;
}

.badge-high-rtp {
  background: linear-gradient(135deg, #7FFF00 0%, #32CD32 100%);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 12px;
}

.badge-bonus-buy {
  background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 100%);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 12px;
}

/* Mobile Menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Sticky Banner */
.sticky-banner {
  animation: slide-in-right 0.5s ease-out;
}

/* Prose Styling */
.prose-casino {
  max-width: 65ch;
  color: #1a202c;
  line-height: 1.75;
}

.prose-casino h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 1em;
  color: #2d3748;
}

.prose-casino h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.6em;
  margin-bottom: 0.8em;
  color: #2d3748;
}

.prose-casino p {
  margin-bottom: 1.25em;
}

.prose-casino ul, .prose-casino ol {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}

.prose-casino li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose-casino table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}

.prose-casino th {
  background: rgba(127, 255, 0, 0.2);
  padding: 0.75em;
  text-align: left;
  font-weight: 600;
  border: 2px solid rgba(127, 255, 0, 0.3);
}

.prose-casino td {
  padding: 0.75em;
  border: 1px solid #e2e8f0;
}

/* Winner Animation */
.win-amount {
  color: #7FFF00;
  font-weight: 900;
  font-size: 2rem;
  text-shadow: 0 0 20px rgba(127, 255, 0, 0.8);
}

.loss-amount {
  color: #ff4444;
  font-weight: 700;
}

/* Countdown Effect */
.countdown-text {
  animation: countdown 1s ease-in-out;
}

/* 3D Button Effect */
.btn-3d {
  transform-style: preserve-3d;
  transition: all 0.3s ease;
  box-shadow: 0 6px 0 #2d3748, 0 8px 10px rgba(0,0,0,0.3);
}

.btn-3d:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #2d3748, 0 6px 8px rgba(0,0,0,0.3);
}

.btn-3d:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #2d3748, 0 4px 6px rgba(0,0,0,0.3);
}

/* Category Pills */
.category-pill {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(127, 255, 0, 0.5);
  transition: all 0.3s ease;
}

.category-pill:hover {
  background: var(--mask-green);
  transform: scale(1.1);
  color: #000;
  border-color: var(--mask-green);
}

/* Review Stars */
.star-rating {
  color: var(--mask-yellow);
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.5));
}

/* Alert Banner */
.alert-gambling {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
  border-left: 6px solid #c92a2a;
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-pattern {
    background-size: cover;
  }
  
  .win-amount {
    font-size: 1.5rem;
  }
}

/* Provider Cloud */
.provider-tag {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(66, 153, 225, 0.3);
  transition: all 0.2s ease;
}

.provider-tag:hover {
  background: rgba(127, 255, 0, 0.9);
  border-color: var(--mask-green);
  transform: scale(1.1);
  color: #000;
}

/* FAQ Accordion */
.faq-item {
  border-left: 4px solid var(--mask-green);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-width: 8px;
  padding-left: 1.5rem;
}
