/* Monkeyzino Custom Styles */

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

/* Custom properties */
:root {
  --bg-dark: #262426;
  --cta-orange: #fd6311;
  --cta-hover: #e55a0f;
  --card-bg: #322f32;
  --card-border: #3d3a3d;
  --text-muted: #a8a3a8;
}

/* Prose readability */
.prose-readable {
  max-width: 72ch;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.prose-readable p {
  margin-bottom: 1.25em;
}

.prose-readable h2,
.prose-readable h3 {
  margin-top: 2em;
  margin-bottom: 0.75em;
  line-height: 1.3;
}

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

.prose-readable li {
  margin-bottom: 0.5em;
}

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

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

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

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

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

.animate-shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(253, 99, 17, 0.15) 25%,
    rgba(253, 99, 17, 0.3) 50%,
    rgba(253, 99, 17, 0.15) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

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

/* Glow effects */
.glow-cta {
  box-shadow: 0 0 20px rgba(253, 99, 17, 0.4),
              0 0 40px rgba(253, 99, 17, 0.2);
}

.glow-cta:hover {
  box-shadow: 0 0 25px rgba(253, 99, 17, 0.6),
              0 0 50px rgba(253, 99, 17, 0.3);
}

.glow-subtle {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
              0 0 30px rgba(253, 99, 17, 0.1);
}

/* Pulse accent */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(253, 99, 17, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(253, 99, 17, 0.8);
  }
}

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

/* 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 30px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(253, 99, 17, 0.15);
}

/* Gradient overlays */
.gradient-overlay {
  background: linear-gradient(
    135deg,
    rgba(253, 99, 17, 0.1) 0%,
    transparent 50%,
    rgba(38, 36, 38, 0.8) 100%
  );
}

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

.tab-btn.active {
  background-color: #fd6311;
  color: white;
}

.tab-content {
  display: none;
}

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

/* Badge styles */
.badge-jackpot {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.badge-rtp {
  background: linear-gradient(135deg, #4ade80, #16a34a);
}

.badge-bonus {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.badge-popular {
  background: linear-gradient(135deg, #f472b6, #db2777);
}

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

::-webkit-scrollbar-track {
  background: #262426;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #fd6311;
}

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

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

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

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

.table-casino th,
.table-casino td {
  border-bottom: 1px solid #3d3a3d;
}

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

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

/* Selection color */
::selection {
  background-color: rgba(253, 99, 17, 0.3);
  color: white;
}
