/* SlimKing Custom CSS */
/* Animations: Shimmer + Float */

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

.shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(163, 230, 53, 0.3) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2.5s infinite;
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    #a3e635 0%,
    #ecfccb 50%,
    #a3e635 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s 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-fast {
  animation: float 2.5s ease-in-out infinite;
}

/* Pulse Glow */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(163, 230, 53, 0.8);
  }
}

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

/* CTA Hover Effects */
.cta-primary {
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(163, 230, 53, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(163, 230, 53, 0.5);
}

/* Card Hover */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Prose Readability */
.prose-casino {
  line-height: 1.75;
  color: #d6d3d1;
}

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

.prose-casino h3 {
  color: #a3e635;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

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

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

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

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

/* Diamond Pattern Overlay */
.diamond-pattern {
  background-image: 
    linear-gradient(45deg, rgba(163, 230, 53, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(163, 230, 53, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(163, 230, 53, 0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(163, 230, 53, 0.03) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

/* Wood Texture Enhancement */
.wood-bg {
  background: linear-gradient(
    135deg,
    #1c1410 0%,
    #2d1f17 25%,
    #3d2a1e 50%,
    #2d1f17 75%,
    #1c1410 100%
  );
}

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

::-webkit-scrollbar-track {
  background: #1c1410;
}

::-webkit-scrollbar-thumb {
  background: #4a3728;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5c4633;
}

/* Tab Active State */
.tab-active {
  background: linear-gradient(135deg, #a3e635 0%, #84cc16 100%);
  color: #1c1410;
  font-weight: 600;
}

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

/* Focus States for Accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid #a3e635;
  outline-offset: 2px;
}

/* Slot Card Badge */
.badge-slot {
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.star-empty {
  color: #4a3728;
}

/* Gradient Border */
.gradient-border {
  position: relative;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #a3e635, #facc15, #a3e635);
  z-index: -1;
}

/* Glass Effect */
.glass {
  background: rgba(45, 31, 23, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Mobile Menu Animation */
.menu-open {
  max-height: 500px;
  opacity: 1;
}

.menu-closed {
  max-height: 0;
  opacity: 0;
}

/* Table Responsive */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Selection Color */
::selection {
  background: rgba(163, 230, 53, 0.3);
  color: #fef3c7;
}

/* Interactive Banner Tabs */
.sk-tab-active {
  background-color: #a3e635 !important;
  color: #1c1917 !important;
  border-color: #a3e635 !important;
}
