:root {
  --emerald: #0d6b3a;
  --emerald-dark: #084d29;
  --emerald-light: #1a9a56;
  --gold: #c9a227;
  --gold-light: #f0c94a;
  --dark-bg: #080e0b;
  --dark-surface: #101a13;
  --dark-card: #162019;
  --text-light: #e8f5ee;
  --text-muted: #8ab09a;
}

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

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(201,162,39,0.4); }
  50% { box-shadow: 0 0 28px rgba(201,162,39,0.85); }
}

@keyframes reelSpin {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(360deg); }
}

.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}

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

.glow-gold {
  animation: glowPulse 2.4s ease-in-out infinite;
}

.prose {
  color: var(--text-light);
  line-height: 1.78;
  font-size: 1rem;
  max-width: 100%;
}

.prose h2 {
  color: var(--gold-light);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 1.2rem;
  margin-bottom: 0.9rem;
  border-left: 4px solid var(--emerald-light);
  padding-left: 0.75rem;
}

.prose h3 {
  color: var(--emerald-light);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
}

.prose p {
  margin-bottom: 1.1rem;
  color: var(--text-light);
}

.prose a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: #fff;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.1rem;
  color: var(--text-light);
}

.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.1rem;
  color: var(--text-light);
}

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

.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 0.6rem 1rem;
  margin: 1.2rem 0;
  background: rgba(201,162,39,0.08);
  color: var(--gold-light);
  border-radius: 0 6px 6px 0;
}

.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.4rem;
  font-size: 0.95rem;
}

.prose thead {
  background: var(--emerald-dark);
}

.prose th {
  color: var(--gold-light);
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 700;
  border: 1px solid rgba(201,162,39,0.25);
}

.prose td {
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-light);
  background: var(--dark-card);
}

.prose tbody tr:nth-child(even) td {
  background: rgba(13,107,58,0.12);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.2rem auto;
  display: block;
  border: 2px solid rgba(201,162,39,0.3);
}

.nav-link {
  position: relative;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #a07d15);
  color: #0a0f0a;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201,162,39,0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-light);
  font-weight: 600;
  padding: 0.72rem 1.8rem;
  border-radius: 8px;
  border: 2px solid var(--gold);
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

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

.card-dark {
  background: var(--dark-card);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 12px;
  padding: 1.5rem;
}

.badge-bonus {
  background: linear-gradient(135deg, rgba(13,107,58,0.85), rgba(8,77,41,0.9));
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 1.6rem 2rem;
}

.section-title {
  color: var(--gold-light);
  font-size: 1.85rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
}

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

.faq-item {
  border-bottom: 1px solid rgba(201,162,39,0.15);
  padding: 1.1rem 0;
}

.faq-question {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.faq-answer {
  color: var(--text-muted);
  margin-top: 0.6rem;
  font-size: 0.97rem;
  line-height: 1.7;
  padding-left: 1.6rem;
}

.word-cloud span {
  display: inline-block;
  margin: 0.3rem 0.45rem;
  padding: 0.35rem 0.8rem;
  background: rgba(13,107,58,0.22);
  border: 1px solid rgba(26,154,86,0.35);
  border-radius: 20px;
  color: var(--emerald-light);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.word-cloud span:hover {
  background: var(--emerald);
  color: var(--gold-light);
}

.step-badge {
  width: 2.8rem;
  height: 2.8rem;
  background: linear-gradient(135deg, var(--gold), #a07d15);
  color: #0a0f0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.promo-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.game-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.22s;
  flex-shrink: 0;
  width: 200px;
}

.game-card:hover {
  transform: scale(1.04);
}

@media (max-width: 1023px) {
  #mobile-menu {
    background: #101a13;
  }
}
