/* Wintino Casino - Custom Styles */
/* Animation 1: Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

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

/* Pulse glow for CTAs */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
  }
  50% {
    box-shadow: 0 0 35px rgba(250, 204, 21, 0.7);
  }
}

/* Shimmer utility class */
.shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(250, 204, 21, 0.15) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* Float utility class */
.float {
  animation: float 4s ease-in-out infinite;
}

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

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

/* Pulse glow for primary buttons */
.btn-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Prose readability */
.prose-casino {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #d1d5db;
}

.prose-casino h2 {
  color: #facc15;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.prose-casino h3 {
  color: #fde047;
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

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

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

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

.prose-casino a {
  color: #facc15;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose-casino a:hover {
  color: #fde047;
}

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

/* 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(250, 204, 21, 0.15);
}

/* Tab active state */
.tab-active {
  background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
  color: #000;
}

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

/* Badge shimmer */
.badge-shimmer {
  position: relative;
  overflow: hidden;
}

.badge-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 2s ease-in-out infinite;
}

/* Glow border */
.glow-border {
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.3),
              0 0 20px rgba(250, 204, 21, 0.1);
}

/* Star rating */
.star-filled {
  color: #facc15;
}

.star-empty {
  color: #374151;
}

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

.mobile-menu.open {
  max-height: 500px;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #facc15;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: rgba(250, 204, 21, 0.3);
  color: #fff;
}
