/* Firixslot Casino Theme - Custom CSS */
/* Animation Keyframes & Overrides */

:root {
  --primary: #7c3aed;
  --primary-light: #a78bfa;
  --secondary: #f59e0b;
  --accent: #10b981;
  --dark: #0f0d1a;
  --darker: #080612;
  --card-bg: rgba(124, 58, 237, 0.08);
  --glow-purple: rgba(124, 58, 237, 0.5);
  --glow-gold: rgba(245, 158, 11, 0.5);
}

* {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--darker) 0%, #1a0a2e 50%, var(--dark) 100%);
  min-height: 100vh;
}

/* Prose Styling for Readability */
.prose {
  color: #e2e8f0;
  line-height: 1.75;
  font-size: 1.0625rem;
}

.prose h2 {
  color: #f8fafc;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.prose p {
  margin-bottom: 1.25rem;
  color: #cbd5e1;
}

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

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

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

.prose a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.2s;
}

.prose a:hover {
  color: var(--primary-light);
}

/* Animation Type 1: Floating/Parallax */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

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

.float-slow {
  animation: float-slow 6s ease-in-out infinite;
}

/* Animation Type 2: Pulse Glow */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px var(--glow-purple), 0 0 40px rgba(124, 58, 237, 0.3);
  }
  50% {
    box-shadow: 0 0 30px var(--glow-gold), 0 0 60px rgba(245, 158, 11, 0.4);
  }
}

@keyframes pulse-border {
  0%, 100% {
    border-color: var(--primary);
  }
  50% {
    border-color: var(--secondary);
  }
}

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

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

/* Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2.5s infinite;
}

/* Gradient Text Animation */
@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.gradient-text {
  background: linear-gradient(90deg, #f59e0b, #a78bfa, #10b981, #f59e0b);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
}

/* Card Hover Effects */
.slot-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.12) 0%, rgba(15, 13, 26, 0.9) 100%);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.slot-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3), 0 0 30px rgba(245, 158, 11, 0.2);
  border-color: var(--secondary);
}

/* Badge Styles */
.badge {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-rtp {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.badge-jackpot {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.badge-bonus {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: white;
}

.badge-popular {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, #d97706 100%);
  color: #0f0d1a;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-light);
  color: var(--primary-light);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.15) 0%, rgba(245, 158, 11, 0.08) 50%, rgba(16, 185, 129, 0.1) 100%);
  border: 1px solid rgba(124, 58, 237, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Provider Button */
.provider-btn {
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  color: #e2e8f0;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.provider-btn:hover {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.2) 0%, rgba(124, 58, 237, 0.1) 100%);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Review Card */
.review-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Feature Card */
.feature-card {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.1) 0%, rgba(15, 13, 26, 0.8) 100%);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
}

/* Star Rating */
.star-rating {
  color: #f59e0b;
}

/* Sticky Header */
.sticky-header {
  backdrop-filter: blur(12px);
  background: rgba(15, 13, 26, 0.85);
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

/* Mobile Menu */
.mobile-menu {
  background: rgba(15, 13, 26, 0.98);
  backdrop-filter: blur(20px);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(245, 158, 11, 0.15) 50%, rgba(124, 58, 237, 0.2) 100%);
  border: 2px solid rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
  animation: float-slow 8s ease-in-out infinite;
  pointer-events: none;
}

/* Footer */
.footer-section {
  background: linear-gradient(180deg, transparent 0%, rgba(8, 6, 18, 0.9) 100%);
  border-top: 1px solid rgba(124, 58, 237, 0.15);
}

/* Author Card */
.author-card {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 1.5rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--darker);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    margin: 1rem;
    border-radius: 1.5rem;
  }
  
  .slot-card:hover {
    transform: none;
  }
  
  .prose {
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* Soft Glow Effect */
.soft-glow {
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.2), 0 0 60px rgba(124, 58, 237, 0.1);
}

/* Glass Effect */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
