/* 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 neon-pulse {
  0%,
  100% {
    box-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 15px #ff00ff;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
  }
  50% {
    box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
  }
}

@keyframes cyber-grid {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.3;
  }
}

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

.parallax-slow {
  animation: parallax-float 8s ease-in-out infinite reverse;
}

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

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

/* Neon effects */
.neon-text {
  animation: neon-pulse 2s ease-in-out infinite alternate;
}

.neon-border {
  border: 2px solid #ff00ff;
  box-shadow: 0 0 10px #ff00ff, inset 0 0 10px rgba(255, 0, 255, 0.1);
  animation: neon-pulse 3s ease-in-out infinite alternate;
}

/* Cyber grid background */
.cyber-grid {
  background-image: linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: cyber-grid 4s ease-in-out infinite;
}

/* Custom button styles */
.btn-cyber {
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  border: none;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cyber::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-cyber:hover::before {
  left: 100%;
}

.btn-cyber:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}

/* Prose styling for readability */
.prose {
  line-height: 1.7;
  color: #e0e0e0;
  max-width: none;
}

.prose h1 {
  color: #00ffff;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
  font-weight: bold;
  text-align: center;
}

.prose h2 {
  color: #00ffff;
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 0, 255, 0.3);
  padding-bottom: 0.5rem;
}

.prose h3 {
  color: #ff00ff;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.4);
}

.prose p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  text-align: justify;
}

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

.prose li {
  margin-bottom: 0.7rem;
  color: #c0c0c0;
  line-height: 1.6;
}

.prose ul li::marker {
  color: #ff00ff;
}

.prose ol li::marker {
  color: #00ffff;
  font-weight: bold;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #ff00ff;
  border-radius: 8px;
  overflow: hidden;
}

.prose th,
.prose td {
  padding: 1rem;
  border: 1px solid rgba(255, 0, 255, 0.3);
  text-align: left;
}

.prose th {
  background: rgba(255, 0, 255, 0.2);
  color: #00ffff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prose td {
  color: #e0e0e0;
}

.prose tr:nth-child(even) {
  background: rgba(0, 255, 255, 0.05);
}

.prose blockquote {
  border-left: 4px solid #ff00ff;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #c0c0c0;
  background: rgba(255, 0, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 0 8px 8px 0;
}

.prose img {
  border-radius: 12px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
  margin: 2rem auto;
  display: block;
  max-width: 100%;
  height: auto;
}

.prose strong {
  color: #ff00ff;
  font-weight: bold;
}

.prose em {
  color: #00ffff;
  font-style: italic;
}

.prose a {
  color: #00ffff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.prose a:hover {
  color: #ff00ff;
  text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

/* Mobile navigation */
.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

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

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

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

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
}

/* Game card hover effects */
.game-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 0, 255, 0.3);
  background: rgba(0, 0, 0, 0.7);
}

.game-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #00ffff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

/* Bonus badge styling */
.bonus-badge {
  background: linear-gradient(135deg, #ff00ff, #00ffff);
  color: #000;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  animation: neon-pulse 2s ease-in-out infinite alternate;
}

/* Step guide styling */
.step-badge {
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Payment method icons */
.payment-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ffff;
}

/* FAQ styling */
.faq-item {
  border: 1px solid rgba(255, 0, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: rgba(255, 0, 255, 0.1);
  padding: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 0, 255, 0.2);
}

.faq-answer {
  padding: 1rem;
  display: none;
}

.faq-answer.active {
  display: block;
}
