/* Custom animations and overrides */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes parallax-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

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

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

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

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

/* Obsidian theme custom styles */
.obsidian-gradient {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.obsidian-card {
  background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
  border: 1px solid #404040;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gunmetal-accent {
  background: linear-gradient(135deg, #4a5568, #2d3748);
}

.onyx-slate {
  background: linear-gradient(135deg, #1a202c, #2d3748, #1a202c);
}

/* Razor-sharp filigree borders */
.filigree-border {
  position: relative;
}

.filigree-border::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  z-index: -1;
  border-radius: inherit;
}

/* Bonus badge styling */
.bonus-badge {
  animation: pulse-glow 2s ease-in-out infinite;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  font-weight: bold;
}

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

.prose h2 {
  color: #ffd700;
  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: #1a1a1a;
}

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

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

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

.burger-line {
  width: 25px;
  height: 3px;
  background: #ffd700;
  margin: 3px 0;
  transition: 0.3s;
}

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

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    flex-direction: column;
    padding: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }
}

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

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

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

/* Payment method icons */
.payment-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid #404040;
}

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

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

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

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