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

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 105, 180, 0.6);
  }
}

/* Glass morphism effects */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-button {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.8), rgba(255, 20, 147, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.glass-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.4);
}

/* Candy theme colors and gradients */
.candy-gradient {
  background: linear-gradient(135deg, #ff69b4, #ff1493, #ff6347, #ffa500);
  background-size: 400% 400%;
  animation: shimmer 3s ease-in-out infinite;
}

.candy-text {
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 3D effects */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.card-3d:hover {
  transform: rotateY(5deg) rotateX(5deg);
}

/* Parallax container */
.parallax-container {
  overflow: hidden;
  position: relative;
}

.parallax-element {
  transition: transform 0.1s ease-out;
}

/* Tilt animation class */
.tilt-animation {
  animation: tilt 4s ease-in-out infinite;
}

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

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

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

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

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

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

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  border-radius: 4px;
}

/* Mobile burger menu */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 1023px) {
  .burger-menu {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 105, 180, 0.3);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 50;
  }

  .mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive utilities */
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

/* Game card hover effects */
.game-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
}

/* Payment method icons */
.payment-icon {
  width: 40px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Bonus badge styling */
.bonus-badge {
  background: linear-gradient(135deg, #ff69b4, #ff1493, #ff6347);
  background-size: 200% 200%;
  animation: shimmer 2s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

/* Step indicators */
.step-indicator {
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

/* FAQ accordion styling */
.faq-item {
  border-bottom: 1px solid rgba(255, 105, 180, 0.2);
}

.faq-question {
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #ff1493;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}
