@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --bg-main:        #170A1F;
  --bg-dark:        #0E0714;
  --bg-card:        #1B2640;
  --bg-card2:       #1E1535;
  --bg-section:     #1A1A2E;
  --orange:         #FFA047;
  --orange-dark:    #F36937;
  --orange-glow:    rgba(255,160,71,.22);
  --text-white:     #FFFFFF;
  --text-body:      #FFFFFF;   /* main body text = white */
  --text-muted:     #A090B8;   /* secondary / captions */
  --border:         #2E1F45;
  --border-orange:  #FFA047;
  --jackpot-color:  #FD7F50;
  --font-display:   'Oswald', sans-serif;
  --font-body:      'Lato', sans-serif;
  --max-width:      1248px;
  --radius:         8px;
  --radius-lg:      16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* LINKS — orange by default in content */
a { color: var(--orange); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,7,20,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.header-logo img { height: 36px; width: auto; }
.header-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: .06em;
  color: var(--text-white); /* both words white */
  line-height: 1;
}

.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.header-nav a {
  color: var(--text-body); font-size: .88rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--radius);
  transition: background .2s, color .2s; white-space: nowrap;
  text-decoration: none;
}
.header-nav a:hover, .header-nav a.active {
  background: rgba(255,160,71,.1); color: var(--orange);
}
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .88rem;
  letter-spacing: .05em; text-transform: uppercase;
  border-radius: var(--radius); padding: 11px 22px;
  cursor: pointer; border: none;
  transition: transform .15s, box-shadow .15s, background .2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-outline { background: transparent; border: 2px solid var(--orange); color: var(--orange); }
.btn-outline:hover { background: var(--orange-glow); }
.btn-primary {
  background: linear-gradient(135deg, #FF9A2E, #F36937);
  color: #fff; box-shadow: 0 4px 20px rgba(243,105,55,.4);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(243,105,55,.6); }
.btn-lg { font-size: 1rem; padding: 14px 32px; border-radius: 10px; }

/* BURGER */
.burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text-body); border-radius: 2px; }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-wrap {
  background: rgba(46,31,69,.5);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 7px 0;
}
.ticker-track {
  display: flex; gap: 56px; width: max-content;
  animation: ticker-scroll 50s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; white-space: nowrap; color: var(--text-muted);
}
.ticker-item .amount { color: var(--orange); font-weight: 700; }
.ticker-item::before { content: '🔥'; font-size: .75rem; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* JACKPOT BAR */
.jackpot-bar {
  background: linear-gradient(90deg, rgba(23,10,31,0) 0%, rgba(253,127,80,.1) 50%, rgba(23,10,31,0) 100%);
  border-top: 1px solid rgba(255,160,71,.12);
  border-bottom: 1px solid rgba(255,160,71,.12);
  padding: 9px 24px; text-align: center; font-size: .88rem; color: var(--text-muted);
}
.jackpot-bar .jackpot-amount {
  color: var(--jackpot-color); font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700; margin: 0 8px;
  text-shadow: 0 0 20px rgba(253,127,80,.5);
}
.jackpot-bar .online-count { color: var(--text-muted); font-size: .78rem; margin-left: 16px; }
.online-dot {
  display: inline-block; width: 7px; height: 7px;
  background: #4EFF8C; border-radius: 50%; margin-right: 5px;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.3); } }

/* ══════════════════════════════════════
   LAYOUT HELPERS
══════════════════════════════════════ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; gap: 16px; }
.section-title {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 600;
  color: var(--text-white); display: flex; align-items: center; gap: 10px; letter-spacing: .03em;
}
.section-link {
  font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--orange); border: 1px solid rgba(255,160,71,.3);
  padding: 6px 14px; border-radius: 20px; transition: background .2s; text-decoration: none;
}
.section-link:hover { background: var(--orange-glow); }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 800px) { .grid-3 { grid-template-columns: 1fr; } }

/* STATS ROW */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin: 40px 0;
}
.stat-item { background: var(--bg-card2); padding: 26px 20px; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: .78rem; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 600px) { .stats-row { grid-template-columns: repeat(2,1fr); } }

/* PROMO CARD */
.promo-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-card2); border: 1px solid var(--border);
  transition: border-color .2s, transform .2s;
}
.promo-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.promo-card-img { width: 100%; height: 180px; object-fit: cover; }
.promo-card-body { padding: 20px; }
.promo-card-tag { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.promo-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text-white); margin-bottom: 8px; }
.promo-card-desc { font-size: .84rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.55; }

/* BREADCRUMB */
.breadcrumb {
  padding: 12px 0; font-size: .8rem; color: var(--text-muted);
  border-bottom: 1px solid rgba(46,31,69,.6);
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, rgba(255,160,71,.06) 0%, rgba(243,105,55,.02) 100%);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px 48px; text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,3.2rem); font-weight: 700;
  color: var(--text-white); letter-spacing: .02em; margin-bottom: 14px;
}
.page-hero p { font-size: 1rem; color: var(--text-muted); max-width: 540px; margin: 0 auto 24px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-family: var(--font-body); font-size: .92rem;
  font-weight: 700; color: var(--text-white); text-align: left; gap: 12px;
}
.faq-question .chevron {
  width: 20px; height: 20px; border: 2px solid var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .7rem; color: var(--orange); transition: transform .2s;
}
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 16px; font-size: .86rem; color: var(--text-body); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* PROMO CODE */
.promo-code-display {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--bg-dark); border: 1px dashed var(--orange);
  border-radius: var(--radius); padding: 14px 24px; margin: 16px 0;
}
.promo-code-text {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--orange); letter-spacing: .2em;
}
.copy-btn {
  background: var(--bg-card2); border: 1px solid var(--border); border-radius: 6px;
  padding: 8px 14px; color: var(--text-body); font-size: .8rem; font-weight: 700;
  cursor: pointer; transition: background .2s, color .2s; letter-spacing: .04em; text-transform: uppercase;
}
.copy-btn:hover, .copy-btn.copied { background: var(--orange); color: #000; border-color: var(--orange); }

/* PAYMENT STRIP */
.payment-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 18px 28px; padding: 24px;
  border-top: 1px solid var(--border);
}
.payment-logo { font-size: .82rem; font-weight: 700; color: var(--text-muted); letter-spacing: .04em; opacity: .7; transition: opacity .2s; }
.payment-logo:hover { opacity: 1; color: var(--text-body); }

/* PROVIDERS GRID */
.providers-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
@media (max-width: 900px) { .providers-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 560px) { .providers-grid { grid-template-columns: repeat(3,1fr); } }
.provider-card {
  background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px; display: flex; align-items: center; justify-content: center;
  min-height: 56px; font-size: .75rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: .04em; text-transform: uppercase; transition: border-color .2s, color .2s; text-align: center;
}
.provider-card:hover { border-color: var(--orange); color: var(--text-body); }

/* ══════════════════════════════════════
   RICH CONTENT (SEO)
══════════════════════════════════════ */
.content-section { background: var(--bg-dark); border-top: 1px solid var(--border); padding: 72px 0 80px; }
.content-section .container { max-width: 960px; }
.content-section h2 {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
  color: var(--text-white); margin: 48px 0 14px; letter-spacing: .02em; line-height: 1.2;
}
.content-section h2:first-child { margin-top: 0; }
.content-section h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--orange); margin: 28px 0 10px; }
.content-section p { font-size: .9rem; color: var(--text-body); line-height: 1.85; margin-bottom: 14px; }
.content-section p strong { color: var(--text-white); font-weight: 700; }
.content-section a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.content-section ul, .content-section ol { margin: 0 0 14px 20px; color: var(--text-body); font-size: .9rem; line-height: 1.85; }
.content-section li { margin-bottom: 6px; }
.content-section li strong { color: var(--text-white); }

/* DATA TABLE */
.data-table-wrap { overflow-x: auto; margin: 18px 0 26px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.data-table thead { background: rgba(46,31,69,.7); }
.data-table thead th {
  padding: 12px 16px; text-align: left; font-family: var(--font-display);
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); white-space: nowrap; border-bottom: 1px solid var(--border);
}
.data-table tbody tr { border-bottom: 1px solid rgba(46,31,69,.5); transition: background .15s; }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(255,160,71,.03); }
.data-table tbody td { padding: 11px 16px; color: var(--text-body); vertical-align: middle; }.data-table tbody td:first-child { color: var(--text-white); font-weight: 700; }
.td-good { color: #4EFF8C !important; font-weight: 700; }
.td-orange { color: var(--orange) !important; font-weight: 700; }

.callout {
  background: linear-gradient(135deg, rgba(255,160,71,.07), rgba(243,105,55,.03));
  border: 1px solid rgba(255,160,71,.2); border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 20px 0;
  font-size: .9rem; color: var(--text-body); line-height: 1.7;
}
.callout strong { color: var(--orange); }
.content-divider { height: 1px; background: linear-gradient(90deg,transparent,var(--border),transparent); margin: 44px 0; }

/* STEP CARDS */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; }
.step-num {
  width: 38px; height: 38px;
  background: linear-gradient(135deg,#FF9A2E,#F36937); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 14px;
}
.step-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--text-white); margin-bottom: 8px; }
.step-text { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

/* FOOTER */
.site-footer { background: var(--bg-dark); border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand p { font-size: .82rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin-top: 12px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; }
.footer-logo-wrap img { height: 32px; }
.footer-logo-wrap span { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-white); }
.footer-col h4 { font-family: var(--font-display); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .84rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-legal { font-size: .73rem; color: var(--text-muted); line-height: 1.6; max-width: 680px; }
.footer-badges { display: flex; align-items: center; gap: 10px; }
.age-badge { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 900; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-nav.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--bg-dark); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; z-index: 99; }
  .header-nav.open a { padding: 12px 16px; }
  .burger { display: flex; }
  .section { padding: 40px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .header-actions .btn-outline { display: none; }
}
