:root {
  --burgundy: #7B1426;
  --burgundy-dark: #4A0D18;
  --burgundy-deep: #1A0508;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --cream: #F5E6C8;
  --smoke: #D4C5A9;
  --ember: #FF6B35;
}

* { box-sizing: border-box; }

body {
  background-color: var(--burgundy-deep);
  color: var(--cream);
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 0;
}

.casino-bg { background-color: var(--burgundy-deep); }
.bg-burgundy { background-color: var(--burgundy); }
.bg-burgundy-dark { background-color: var(--burgundy-dark); }
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-cream { color: var(--cream); }
.border-gold { border-color: var(--gold); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #a07828);
  color: #1A0508;
  font-weight: 700;
  padding: 0.85em 2em;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

.btn-secondary {
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  padding: 0.75em 1.8em;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid var(--gold);
  transition: background 0.2s, color 0.2s;
  font-size: 0.95rem;
}
.btn-secondary:hover { background: var(--gold); color: #1A0508; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-wrapper { overflow: hidden; }

@keyframes ember-glow {
  0%, 100% { box-shadow: 0 0 18px rgba(201,168,76,0.3); }
  50% { box-shadow: 0 0 36px rgba(201,168,76,0.65); }
}
.glow-card { animation: ember-glow 3s ease-in-out infinite; }

@keyframes parallax-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.parallax-float { animation: parallax-float 6s ease-in-out infinite; }

.arch-border {
  border: 2px solid var(--gold);
  border-radius: 8px;
  position: relative;
}
.arch-border::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%);
  width: 60%; height: 12px;
  background: var(--gold);
  border-radius: 50% 50% 0 0;
  opacity: 0.35;
}

.hero-overlay {
  background: linear-gradient(160deg, rgba(74,13,24,0.88) 0%, rgba(26,5,8,0.92) 60%, rgba(74,13,24,0.75) 100%);
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}

.prose { max-width: 100%; color: var(--cream); line-height: 1.8; }
.prose h2 { color: var(--gold); font-size: 1.6rem; margin-top: 2rem; margin-bottom: 0.75rem; border-bottom: 1px solid rgba(201,168,76,0.3); padding-bottom: 0.4rem; }
.prose h3 { color: var(--gold-light); font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.prose p { margin-bottom: 1rem; }
.prose a { color: var(--gold); text-decoration: underline; }
.prose a:hover { color: var(--gold-light); }
.prose ul { list-style: disc; padding-left: 1.5em; margin-bottom: 1rem; }
.prose ol { list-style: decimal; padding-left: 1.5em; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.4rem; }
.prose blockquote { border-left: 4px solid var(--gold); padding-left: 1em; color: var(--smoke); font-style: italic; margin: 1.5rem 0; }
.prose img { max-width: 100%; height: auto; border-radius: 6px; margin: 1.5rem 0; }
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  width: 100%;
}
.prose thead { background-color: var(--burgundy); }
.prose th { padding: 0.75em 1em; text-align: left; color: var(--gold); font-weight: 700; border: 1px solid rgba(201,168,76,0.25); }
.prose td { padding: 0.65em 1em; border: 1px solid rgba(201,168,76,0.15); color: var(--cream); }
.prose tr:nth-child(even) { background-color: rgba(123,20,38,0.2); }

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  padding: 0.4em 0.75em;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--gold); background: rgba(201,168,76,0.1); }

.mobile-menu {
  background-color: #2D0610;
  border-top: 1px solid rgba(201,168,76,0.3);
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.7rem;
}

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

.game-card {
  background: linear-gradient(180deg, var(--burgundy-dark) 0%, #2D0610 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.game-card:hover { transform: translateY(-4px); border-color: var(--gold); }

.promo-card {
  background: linear-gradient(160deg, var(--burgundy-dark), #2D0610);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: border-color 0.25s, transform 0.25s;
}
.promo-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.faq-question {
  cursor: pointer;
  padding: 1rem 0;
  color: var(--gold-light);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  color: var(--smoke);
  padding-bottom: 1rem;
  line-height: 1.75;
}

.provider-cloud span {
  display: inline-block;
  margin: 0.35rem;
  padding: 0.3em 0.75em;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  color: var(--cream);
  background: rgba(123,20,38,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.provider-cloud span:hover { border-color: var(--gold); color: var(--gold); }

.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.container-main { max-width: 1440px; margin: 0 auto; padding: 0 1.25rem; }

@media (min-width: 1024px) {
  .container-main { padding: 0 3rem; }
}
