/* WestAce Casino Custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --gold: #d4af37;
  --gold-light: #f0d060;
  --steel: #3a4a5c;
  --steel-dark: #1c2533;
  --steel-mid: #2a3545;
  --bg-dark: #0f1620;
  --bg-mid: #161f2e;
  --text-light: #e8edf5;
  --text-muted: #8a9bb0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  color: var(--gold);
  letter-spacing: 0.04em;
}

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

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.marquee-track {
  animation: marquee 28s linear infinite;
  display: flex;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #f0d060 50%, #d4af37 100%);
  background-size: 200% auto;
  color: #0f1620;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background-position 0.4s ease, transform 0.2s ease;
  animation: pulse-gold 2.4s infinite;
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
}

.btn-steel {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-steel:hover {
  background: var(--gold);
  color: #0f1620;
}

.steel-card {
  background: linear-gradient(145deg, var(--steel-mid) 0%, var(--steel-dark) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 0.75rem;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.steel-card:hover {
  border-color: rgba(212,175,55,0.6);
  transform: translateY(-3px);
}

.gold-gradient-text {
  background: linear-gradient(90deg, #d4af37, #f0d060, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-parallax {
  animation: parallaxFloat 6s ease-in-out infinite;
}

.section-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 3rem 0;
}

/* Prose Styles */
.prose {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}

.prose h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding-bottom: 0.5rem;
}

.prose h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #f0d060;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

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

.prose a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.2s;
}

.prose a:hover {
  color: var(--gold-light);
}

.prose ul {
  list-style: disc;
  padding-left: 1.75em;
  margin-bottom: 1.25rem;
}

.prose ol {
  list-style: decimal;
  padding-left: 1.75em;
  margin-bottom: 1.25rem;
}

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

.prose blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 1.25em;
  color: #94a3b8;
  font-style: italic;
  margin: 1.5rem 0;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(212,175,55,0.25);
}

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
}

.prose table th {
  background: var(--steel);
  color: var(--gold);
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(212,175,55,0.2);
}

.prose table td {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(58,74,92,0.6);
  color: #cbd5e1;
  background: var(--steel-dark);
}

.prose table tr:hover td {
  background: var(--steel-mid);
}

.step-badge {
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #0f1620;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-item {
  background: var(--steel-mid);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 0.75rem;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(212,175,55,0.45);
}

.provider-tag {
  background: rgba(58,74,92,0.7);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--text-muted);
  border-radius: 0.4rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.85rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  margin: 0.25rem;
}

.provider-tag:hover {
  background: rgba(212,175,55,0.15);
  color: var(--gold);
}

.nav-sticky {
  background: linear-gradient(90deg, #0f1620 0%, #1c2533 100%);
  border-bottom: 1px solid rgba(212,175,55,0.25);
  backdrop-filter: blur(8px);
}

.hero-section {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(15,22,32,0.92) 0%, rgba(28,37,51,0.85) 100%);
}

.bonus-badge {
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(240,208,96,0.1) 100%);
  border: 2px solid var(--gold);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.bonus-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(240,208,96,0.08), transparent);
  animation: shimmer 3s infinite;
  background-size: 200% auto;
}

.payment-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
  }
  .prose h2 {
    font-size: 1.45rem;
  }
  .prose h3 {
    font-size: 1.2rem;
  }
}
