/* Inner page link styling */
.content-area a,
.prose-casino a {
  color: #ff6b6b;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
  font-weight: 600;
}

.content-area a:hover,
.prose-casino a:hover {
  color: #42a5f5;
  text-decoration: underline;
}
/* Custom animations and overrides for Cat Spins Casino */

/* Keyframe animations */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes parallax-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

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

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
  }
}

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

/* Animation classes */
.animate-marquee {
  animation: marquee 20s linear infinite;
}

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

.animate-bounce-gentle {
  animation: bounce-gentle 3s ease-in-out infinite;
}

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

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

/* Cat-themed gradient backgrounds */
.cat-gradient-primary {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 50%, #42a5f5 100%);
}

.cat-gradient-secondary {
  background: linear-gradient(135deg, #ab47bc 0%, #ec407a 50%, #ff7043 100%);
}

.cat-gradient-accent {
  background: linear-gradient(135deg, #26c6da 0%, #66bb6a 50%, #ffee58 100%);
}

/* Rounded cat-style elements */
.cat-rounded {
  border-radius: 2rem;
}

.cat-rounded-full {
  border-radius: 50%;
}

/* Custom prose styling for readability */
.prose-casino {
  line-height: 1.7;
  color: #374151;
}

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

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

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

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

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

/* Focus states for accessibility */
.focus-visible:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Custom button styles */
.btn-cat-primary {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  border: none;
  border-radius: 2rem;
  padding: 1rem 2rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-cat-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-cat-secondary {
  background: linear-gradient(135deg, #42a5f5 0%, #26c6da 100%);
  border: none;
  border-radius: 2rem;
  padding: 1rem 2rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(66, 165, 245, 0.3);
}

.btn-cat-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 165, 245, 0.4);
}

/* Game card hover effects */
.game-card {
  transition: all 0.3s ease;
  border-radius: 1.5rem;
  overflow: hidden;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Bonus calculator styling */
.calculator-input {
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.calculator-input:focus {
  border-color: #3b82f6;
  outline: none;
}

/* Payment method icons */
.payment-icon {
  width: 60px;
  height: 40px;
  background: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.payment-icon:hover {
  transform: scale(1.1);
}

/* Responsive utilities */
@media (max-width: 1023px) {
  .mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

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

/* Sidebar styling */
.sidebar-fixed {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 0 1rem 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Trustpilot-style badge */
.trust-badge {
  background: linear-gradient(135deg, #00b67a 0%, #00a86b 100%);
  border-radius: 1rem;
  padding: 1rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 182, 122, 0.3);
}

/* Stats tiles */
.stat-tile {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  color: white;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-tile:hover {
  transform: translateY(-5px);
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1f2937;
}

.faq-answer {
  margin-top: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
  z-index: 50;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}
