/* Golisimo Casino - Custom CSS */
/* Animation Keyframes & Prose Styling */

:root {
  --bg-primary: #0a1628;
  --bg-secondary: #0f2847;
  --bg-card: #152a4a;
  --accent-fire: #ff9f1c;
  --accent-flame: #ff6b35;
  --accent-gold: #ffd166;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --success: #22c55e;
  --danger: #ef4444;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Prose Styling for Readability */
.prose {
  max-width: 72ch;
  line-height: 1.75;
  color: var(--text-secondary);
}

.prose h2,
.prose h3,
.prose h4 {
  color: var(--text-primary);
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 0.75em;
  line-height: 1.3;
}

.prose h2 {
  font-size: 1.75rem;
  border-bottom: 2px solid var(--accent-fire);
  padding-bottom: 0.5rem;
}

.prose h3 {
  font-size: 1.375rem;
  color: var(--accent-gold);
}

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

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

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

.prose strong {
  color: var(--text-primary);
  font-weight: 600;
}

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

.prose a:hover {
  color: var(--accent-gold);
}

/* Fire Glow Button */
.btn-fire {
  background: linear-gradient(135deg, var(--accent-flame) 0%, var(--accent-fire) 50%, var(--accent-gold) 100%);
  color: #000;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(255, 159, 28, 0.5), 0 0 40px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  text-decoration: none;
}

.btn-fire:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 30px rgba(255, 159, 28, 0.7), 0 0 60px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent-fire);
  color: var(--accent-fire);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--accent-fire);
  color: #000;
}

/* Pulsating CTA */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 159, 28, 0.5), 0 0 40px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 159, 28, 0.8), 0 0 70px rgba(255, 107, 53, 0.5);
  }
}

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

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

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

/* Fire Particle Animation */
@keyframes particle-rise {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(0);
  }
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-fire);
  border-radius: 50%;
  animation: particle-rise 2s ease-out infinite;
  pointer-events: none;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 0.3s; }
.particle:nth-child(3) { left: 40%; animation-delay: 0.6s; }
.particle:nth-child(4) { left: 55%; animation-delay: 0.9s; }
.particle:nth-child(5) { left: 70%; animation-delay: 1.2s; }
.particle:nth-child(6) { left: 85%; animation-delay: 1.5s; }

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

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

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

/* Card Hover Effects */
.card-glow {
  background: var(--bg-card);
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 159, 28, 0.1);
}

.card-glow:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(255, 159, 28, 0.2);
  border-color: rgba(255, 159, 28, 0.3);
}

/* Slot Card */
.slot-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--bg-card);
  transition: all 0.3s ease;
}

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

.slot-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.slot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.slot-card:hover .slot-overlay {
  opacity: 1;
}

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

.badge-rtp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.badge-jackpot {
  background: linear-gradient(135deg, #ffd166, #ff9f1c);
  color: #000;
}

.badge-bonus {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: white;
}

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

/* Hero Pattern Background */
.hero-pattern {
  background-color: var(--bg-secondary);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 159, 28, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
}

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

/* Table Styling */
.bets-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.5rem;
}

.bets-table tr {
  background: var(--bg-card);
  border-radius: 0.5rem;
}

.bets-table td {
  padding: 0.75rem 1rem;
}

.bets-table td:first-child {
  border-radius: 0.5rem 0 0 0.5rem;
}

.bets-table td:last-child {
  border-radius: 0 0.5rem 0.5rem 0;
}

/* Provider Button */
.provider-btn {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid rgba(255, 159, 28, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.provider-btn:hover {
  background: linear-gradient(145deg, var(--bg-secondary), var(--bg-card));
  color: var(--accent-fire);
  border-color: var(--accent-fire);
  transform: translateY(-2px);
}

/* Feature Card Icon */
.feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

/* Review Card */
.review-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 1.5rem;
  border-left: 4px solid var(--accent-fire);
}

/* Star Rating */
.stars {
  color: var(--accent-gold);
  letter-spacing: 2px;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.sticky-header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-primary);
  transition: right 0.3s ease;
  z-index: 1001;
  padding: 2rem;
}

.mobile-menu.active {
  right: 0;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Grid */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

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

/* Footer */
footer {
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
  border-top: 1px solid rgba(255, 159, 28, 0.2);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-fire);
}
