/* Custom animations and overrides */
@keyframes gemShimmer {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes parallaxFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

/* Sapphire Vault Theme Colors */
:root {
  --sapphire-primary: #1e3a8a;
  --sapphire-secondary: #3730a3;
  --sapphire-accent: #c0c7d6;
  --sapphire-dark: #0f172a;
  --sapphire-light: #f8fafc;
  --silver: #94a3b8;
  --gold: #fbbf24;
}

/* Custom gradient backgrounds */
.sapphire-gradient {
  background: linear-gradient(
    135deg,
    var(--sapphire-primary) 0%,
    var(--sapphire-secondary) 50%,
    var(--sapphire-dark) 100%
  );
}

.silver-gradient {
  background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 50%, #64748b 100%);
}

/* Gemstone effect */
.gem-effect {
  position: relative;
  overflow: hidden;
}

.gem-effect::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  animation: gemShimmer 3s ease-in-out infinite;
}

/* Leather texture effect */
.leather-texture {
  background-image: radial-gradient(circle at 20% 50%, rgba(120, 53, 15, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(120, 53, 15, 0.5) 0%, transparent 50%),
    linear-gradient(90deg, #8b4513 0%, #a0522d 50%, #8b4513 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
}

/* Metal filigree borders */
.metal-filigree {
  border: 2px solid var(--silver);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 10px rgba(30, 58, 138, 0.3);
}

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

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

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

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

.prose h1,
.prose h2,
.prose h3 {
  color: var(--sapphire-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

/* Custom button styles */
.btn-primary {
  background: linear-gradient(135deg, var(--sapphire-primary), var(--sapphire-secondary));
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--sapphire-primary);
  border: 2px solid var(--sapphire-primary);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--sapphire-primary);
  color: white;
}

/* Bonus badge styling */
.bonus-badge {
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  color: var(--sapphire-dark);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
  position: relative;
  overflow: hidden;
}

.bonus-badge::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--silver), var(--gold), var(--silver));
  border-radius: 17px;
  z-index: -1;
}

/* Responsive utilities */
@media (max-width: 1024px) {
  .mobile-menu {
    display: block;
  }

  .desktop-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }

  .desktop-menu {
    display: block;
  }
}

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

/* Game card styling */
.game-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

/* Payment method table styling */
.payment-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-table td,
.payment-table th {
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.payment-table th {
  background: var(--sapphire-gradient);
  color: white;
  font-weight: 600;
}

/* FAQ styling */
.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  color: var(--sapphire-dark);
  cursor: pointer;
  border-bottom: 1px solid #e5e7eb;
}

.faq-answer {
  padding: 20px;
  color: #6b7280;
  line-height: 1.6;
}
