/* Custom CSS for VipLuck Casino */

/* CTA Shimmer Animation */
.cta-shimmer {
  position: relative;
  overflow: hidden;
}

.cta-shimmer:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.8s;
}

.cta-shimmer:hover:before {
  left: 100%;
}

/* Pulse Glow Effect */
.pulse-glow {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.8);
  }
}

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

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

/* Providers Marquee */
.providers-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.providers-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: calc(200% + 2rem);
}

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

.provider-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem;
  border-radius: 2rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Slot Card Hover Effects */
.slot-card {
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slot-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* FAQ Accordion Styles */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-icon {
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .providers-track {
    animation-duration: 20s;
  }
  
  .slot-card {
    min-height: 100px;
    padding: 1rem !important;
  }
  
  .slot-card h3 {
    font-size: 0.875rem;
  }
  
  .slot-card p {
    font-size: 0.75rem;
  }
}

@media (max-width: 640px) {
  .prose {
    font-size: 16px;
  }
  
  .prose h2 {
    font-size: 1.5rem;
  }
  
  .prose h3 {
    font-size: 1.25rem;
  }
  
  table {
    font-size: 0.875rem;
  }
  
  .providers-track {
    animation-duration: 15s;
  }
}

/* Table responsive styling */
@media (max-width: 768px) {
  .overflow-x-auto {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
  }
  
  .overflow-x-auto::-webkit-scrollbar {
    height: 8px;
  }
  
  .overflow-x-auto::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
  }
  
  .overflow-x-auto::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
  }
}

/* Prose styling for content pages */
.prose {
  color: #1e293b;
}

.prose h2 {
  color: #1e293b;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h3 {
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.prose ul {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}

.prose li {
  margin: 0.5rem 0;
}

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

/* Additional utility classes */
.text-gradient {
  background: linear-gradient(135deg, #0ea5e9, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Loading animation for images */
.loading-placeholder {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 2s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Mobile menu animation */
#mobile-menu {
  transition: transform 0.3s ease-in-out;
}

#mobile-menu.hidden {
  transform: translateX(100%);
}

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

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .no-print,
  header,
  footer,
  nav {
    display: none !important;
  }
  
  .prose {
    max-width: none !important;
  }
}