:root {
  --navy: #0e1b35;
  --navy-light: #152644;
  --dark-velvet: #07101f;
  --gold: #c9a227;
  --gold-light: #e2be5a;
  --silver: #b8bcc8;
  --silver-light: #d8dce8;
  --text-light: #f0f0f5;
  --text-muted: #9aa3b8;
  --card-bg: #111e38;
  --border-gold: rgba(201,162,39,0.35);
}

* { box-sizing: border-box; }

body {
  background-color: var(--dark-velvet);
  color: var(--text-light);
  font-family: 'Segoe UI', system-ui, sans-serif;
  margin: 0;
  padding: 0;
}

.site-nav {
  background: var(--navy);
  border-bottom: 2px solid var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--silver-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--dark-velvet) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-size: 1.5rem;
}

.mobile-menu {
  display: none;
  background: var(--navy);
  border-top: 1px solid var(--border-gold);
  padding: 1rem 1.25rem;
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu a {
  color: var(--silver-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu .nav-cta-mobile {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-bottom: none;
  text-align: center;
}

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .burger-btn { display: block; }
}

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

/* Hero */
.hero-section {
  min-height: 88vh;
  background: linear-gradient(135deg, rgba(7,16,31,0.92) 0%, rgba(14,27,53,0.85) 100%), url('/images/hero.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201,162,39,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  line-height: 1.15;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark-velvet);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 24px rgba(201,162,39,0.4);
  letter-spacing: 0.02em;
}

.hero-badge-wrap {
  margin-bottom: 1.75rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark-velvet);
  font-weight: 800;
  padding: 0.85rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05rem;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201,162,39,0.35);
  border: none;
  cursor: pointer;
}

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

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

.btn-secondary:hover {
  background: var(--gold);
  color: var(--dark-velvet);
}

.disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Section common */
.section-block {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

/* Chain divider */
.chain-divider {
  text-align: center;
  color: var(--silver);
  letter-spacing: 0.3em;
  font-size: 1.2rem;
  opacity: 0.35;
  padding: 0.5rem 0;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  background: var(--navy);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.6rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Feature strip */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201,162,39,0.2);
}

.game-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.game-card-body {
  padding: 0.85rem;
  text-align: center;
}

.game-card-body h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--silver-light);
  margin: 0 0 0.6rem;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark-velvet);
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 3px 14px rgba(201,162,39,0.35);
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Promo cards */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.promo-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.promo-card-icon {
  font-size: 2rem;
  color: var(--gold);
}

.promo-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0;
}

.promo-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

/* Review blocks */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.review-block {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

.review-block h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 1rem;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 0.6rem;
}

.review-block p, .review-block li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.review-block ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.word-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.wc-tag {
  background: rgba(201,162,39,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  transition: background 0.2s;
}

.wc-tag:hover { background: rgba(201,162,39,0.25); }

/* Payments table */
.payments-section .overflow-x-auto {
  border-radius: 10px;
  border: 1px solid var(--border-gold);
  overflow: hidden;
}

.payments-section table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
}

.payments-section th {
  background: var(--navy-light);
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--border-gold);
}

.payments-section td {
  color: var(--silver-light);
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.payments-section tr:last-child td { border-bottom: none; }

.payments-section tr:hover td { background: rgba(201,162,39,0.05); }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-q:hover { background: rgba(201,162,39,0.06); }

.faq-a {
  padding: 0 1.25rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Footer */
.site-footer {
  background: var(--navy);
  border-top: 2px solid var(--border-gold);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a, .footer-col p {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--dark-velvet);
  font-size: 0.85rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-icon-link {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}

.footer-icon-link:hover {
  color: var(--gold-light);
  border-color: var(--border-gold);
}

/* Prose */
.prose {
  color: var(--silver-light);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.8;
}

.prose h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 800;
  color: var(--gold-light);
  margin: 2rem 0 0.75rem;
  border-left: 4px solid var(--gold);
  padding-left: 0.75rem;
}

.prose h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--silver-light);
  margin: 1.5rem 0 0.5rem;
}

.prose p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--silver-light);
}

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

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

.prose ul, .prose ol {
  padding-left: 1.5rem;
  margin: 0.75rem 0 1rem;
}

.prose li {
  font-size: 0.95rem;
  color: var(--silver-light);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.prose blockquote {
  border-left: 4px solid var(--gold);
  background: var(--card-bg);
  padding: 0.75rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.25rem 0;
  color: var(--text-muted);
  font-style: italic;
}

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1rem 0;
}

.prose th {
  background: var(--navy-light);
  color: var(--gold-light);
  font-weight: 700;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border-gold);
  text-align: left;
}

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

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 1.5rem auto;
  border: 1px solid var(--border-gold);
}

.prose hr {
  border: none;
  border-top: 1px solid var(--border-gold);
  margin: 2rem 0;
}

/* Parallax shimmer on hero */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, #fff 50%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Glow chain animation */
@keyframes chainGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(201,162,39,0.3); }
  50% { box-shadow: 0 0 28px rgba(201,162,39,0.65); }
}

.chain-glow {
  animation: chainGlow 3s ease-in-out infinite;
}

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

.single-page-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}
