/* Custom animations and overrides */
@keyframes parallax-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

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

@keyframes cloud-drift {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(10px);
  }
}

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

/* Parallax elements */
.parallax-element {
  animation: parallax-float 6s ease-in-out infinite;
}

.parallax-element:nth-child(2n) {
  animation-delay: -2s;
  animation-duration: 8s;
}

.parallax-element:nth-child(3n) {
  animation-delay: -4s;
  animation-duration: 10s;
}

/* Marquee animation */
.marquee {
  overflow: hidden;
  white-space: nowrap;
}

/* Casino Page Styling */
.casino-section {
  max-width: 700px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 2rem 2.5rem;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.casino-title {
  font-size: 2.2rem;
  color: #1a2340;
  margin-bottom: 1rem;
  text-align: center;
}
.casino-intro {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
  text-align: center;
}
.casino-subtitle {
  font-size: 1.3rem;
  color: #2b3a67;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}
.casino-slots-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  list-style: disc inside;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}
.casino-slots-list li {
  font-size: 1.05rem;
  color: #1a2340;
  flex: 1 1 40%;
}
.casino-benefits {
  background: #f6f8fa;
  border-left: 4px solid #2b3a67;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  color: #333;
  margin-bottom: 2rem;
}
.casino-faq {
  margin-top: 2.5rem;
}
.faq-item {
  margin-bottom: 1.2rem;
  background: #f9fafb;
  border-radius: 6px;
  padding: 0.7rem 1rem;
  border-left: 3px solid #f7b500;
}
.faq-item strong {
  color: #2b3a67;
  display: block;
  margin-bottom: 0.2rem;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

/* Cloud background */
.cloud-bg {
  background: linear-gradient(135deg, #87ceeb 0%, #98d8e8 50%, #b0e0e6 100%);
  position: relative;
}

.cloud-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8) 20%, transparent 21%),
    radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.6) 15%, transparent 16%),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.7) 25%, transparent 26%),
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.5) 18%, transparent 19%);
  animation: cloud-drift 15s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Cartoon-style elements */
.cartoon-border {
  border: 3px solid #2d3748;
  border-radius: 15px;
  box-shadow: 4px 4px 0px #2d3748;
}

.cartoon-button {
  @apply cartoon-border bg-yellow-400 hover:bg-yellow-300 text-gray-900 font-bold py-3 px-6 transition-all duration-200;
  transform: translateY(0);
}

.cartoon-button:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px #2d3748;
}

.cartoon-button:active {
  transform: translateY(1px);
  box-shadow: 2px 2px 0px #2d3748;
}

/* Prose styling for readability */
.prose {
  line-height: 1.6;
  color: #2d3748;
}
.btn {
  display: inline-block;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #1d4ed8 0%, #1e3a8a 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.18);
}

.prose h2 {
  @apply text-2xl font-bold mb-4 text-gray-800;
}

.prose h3 {
  @apply text-xl font-semibold mb-3 text-gray-700;
}

.prose p {
  @apply mb-4 text-gray-600;
}

.prose ul {
  @apply mb-4 pl-6;
}

.prose li {
  @apply mb-2 text-gray-600;
  list-style-type: disc;
}

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

/* Focus states for accessibility */
.focus-visible:focus {
  @apply outline-2 outline-blue-500 outline-offset-2;
}

/* Bounce animation for gift icon */
.bounce-gift {
  animation: bounce-gentle 2s ease-in-out infinite;
}

/* Island bottom menu */
.bottom-island {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #e2e8f0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

/* Game grid hover effects */
.game-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

/* Wagering calculator styling */
.calculator-input {
  @apply border-2 border-gray-300 rounded-lg px-3 py-2 focus:border-blue-500 focus:outline-none;
}

.calculator-result {
  @apply bg-blue-50 border-2 border-blue-200 rounded-lg p-4 text-blue-800;
}
