/* Slimking Casino - Custom Styles */
/* Animations: Shimmer + Float */

:root {
  --neon-purple: #a855f7;
  --neon-purple-glow: rgba(168, 85, 247, 0.5);
  --dark-blue: #0f172a;
  --dark-blue-light: #1e293b;
  --dark-blue-lighter: #334155;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Prose readability */
.prose-casino {
  line-height: 1.75;
  letter-spacing: 0.01em;
}

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

.prose-casino h2,
.prose-casino h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

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

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

.shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(168, 85, 247, 0.3) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    #fff 0%,
    #a855f7 25%,
    #fff 50%,
    #a855f7 75%,
    #fff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

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

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

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

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

/* Neon glow effect */
@keyframes neon-pulse {
  0%, 100% {
    box-shadow: 0 0 5px var(--neon-purple),
                0 0 20px var(--neon-purple-glow),
                0 0 40px rgba(168, 85, 247, 0.2);
  }
  50% {
    box-shadow: 0 0 10px var(--neon-purple),
                0 0 30px var(--neon-purple-glow),
                0 0 60px rgba(168, 85, 247, 0.3);
  }
}

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

/* Bowling pin accent */
.bowling-pin::before {
  content: '🎳';
  margin-right: 0.5rem;
}

/* Card hover effects */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.25);
}

/* Tab styles */
.tab-btn {
  transition: all 0.2s ease;
}

.tab-btn.active {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Badge styles */
.badge-popular {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.badge-jackpot {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

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

.badge-bonus {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* iOS rounded style buttons */
.btn-ios {
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-ios:active {
  transform: scale(0.97);
}

/* Mobile menu animation */
.mobile-menu {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-purple);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--neon-purple);
  outline-offset: 2px;
}

/* Table styling */
.casino-table {
  border-collapse: separate;
  border-spacing: 0;
}

.casino-table th,
.casino-table td {
  border-bottom: 1px solid var(--dark-blue-lighter);
}

.casino-table tr:last-child td {
  border-bottom: none;
}

/* Star rating */
.star-rating {
  color: #fbbf24;
  letter-spacing: 2px;
}
