/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #F5A623;
  --gold-dark: #D4881A;
  --gold-light: #FFD06B;
  --green: #1DB954;
  --green-dark: #158a3e;
  --bg-deep: #0D0F14;
  --bg-card: #151820;
  --bg-card2: #1C2030;
  --bg-section: #111318;
  --text-main: #E8EAF0;
  --text-muted: #8A90A2;
  --text-gold: #F5A623;
  --border: #252a3a;
  --radius: 10px;
  --radius-lg: 16px;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-width: 320px;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

img { display: none !important; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--gold); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--text-main); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--gold-light); margin-bottom: .6rem; }
p { margin-bottom: 1rem; color: var(--text-main); }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-alt { background: var(--bg-section); }

/* ===== LOGO ===== */
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 44px; height: 44px; flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1;
}
.logo-text span { color: var(--gold); }
.logo-text em { color: var(--text-main); font-style: normal; }

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, #0a3d1f 0%, #0d5c2e 50%, #0a3d1f 100%);
  border-bottom: 2px solid var(--gold);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1160px;
  margin: 0 auto;
}
.top-nav { display: flex; gap: 24px; align-items: center; }
.top-nav a {
  color: var(--text-main);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .3px;
  transition: color .2s;
}
.top-nav a:hover { color: var(--gold); }
.btn-header {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: .9rem;
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-header:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ===== PROMO BANNER TOP ===== */
.promo-top {
  background: linear-gradient(135deg, #1a2a0a 0%, #0f3d1a 40%, #1a1a00 100%);
  border-bottom: 1px solid var(--gold);
  text-align: center;
  padding: 14px 20px;
}
.promo-top p { margin: 0; font-size: .95rem; color: var(--text-main); }
.promo-top strong { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #0d1a0a 0%, #091522 40%, #0d0f14 100%);
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 700px; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(245,166,35,.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero h1 { margin-bottom: 18px; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.rating-num { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.rating-label { color: var(--text-muted); font-size: .85rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 38px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(245,166,35,.3);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,166,35,.45); }

/* ===== BONUS CARD HERO ===== */
.bonus-card-hero {
  background: linear-gradient(135deg, #0d2010 0%, #1a3a10 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bonus-card-hero .bonus-amt {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.bonus-card-hero .bonus-label { color: var(--text-muted); font-size: .9rem; margin-top: 4px; }

/* ===== MID PROMO BAND ===== */
.promo-band {
  background: linear-gradient(90deg, #1a2a0a 0%, #0f3d1a 50%, #1a2a0a 100%);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 22px 20px;
  text-align: center;
}
.promo-band p { margin: 0 0 12px; font-size: 1rem; color: var(--text-main); }
.promo-band strong { color: var(--gold); font-size: 1.15rem; }

/* ===== SCORE GRID ===== */
.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.score-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
}
.score-val {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
}
.score-name { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }
.score-bar { height: 4px; border-radius: 2px; background: var(--border); margin-top: 10px; overflow: hidden; }
.score-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--green)); }

/* ===== FEATURE CARDS ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(245,166,35,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

/* ===== BONUSES TABLE ===== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 24px; }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
thead tr { background: rgba(245,166,35,.1); }
th {
  text-align: left;
  padding: 13px 16px;
  font-size: .85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .4px;
  border-bottom: 2px solid var(--gold);
  white-space: nowrap;
}
td {
  padding: 12px 16px;
  font-size: .9rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,.02); }
.tag-green {
  background: rgba(29,185,84,.15);
  color: var(--green);
  border: 1px solid rgba(29,185,84,.3);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}
.tag-gold {
  background: rgba(245,166,35,.12);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ===== GAME TILES ===== */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.game-tile {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.game-tile:hover { border-color: var(--gold); transform: translateY(-3px); }
.game-tile-icon { font-size: 2.4rem; margin-bottom: 10px; display: block; }
.game-tile-name { font-size: .85rem; font-weight: 700; color: var(--text-main); }
.game-tile-count { font-size: .76rem; color: var(--text-muted); margin-top: 3px; }

/* ===== PAYMENT GRID ===== */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.pay-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
}
.pay-card-icon { font-size: 1.6rem; display: block; margin-bottom: 6px; }

/* ===== PROS CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.pros-box, .cons-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.pros-box { border-top: 3px solid var(--green); }
.cons-box { border-top: 3px solid #e74c3c; }
.pros-box h3 { color: var(--green); }
.cons-box h3 { color: #e74c3c; }
.pros-box li::before { content: '✔ '; color: var(--green); }
.cons-box li::before { content: '✗ '; color: #e74c3c; }
ul.check-list, ul.cross-list { list-style: none; padding-left: 0; }
ul.check-list li, ul.cross-list li { padding: .35rem 0; font-size: .92rem; border-bottom: 1px solid var(--border); }
ul.check-list li:last-child, ul.cross-list li:last-child { border-bottom: none; }

/* ===== FAQ ===== */
.faq-list { margin-top: 28px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(245,166,35,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  transition: transform .3s;
  color: var(--gold);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ===== REVIEW SECTION ===== */
.review-text h2 { margin-top: 36px; }
.review-text h2:first-child { margin-top: 0; }
.review-text p { color: var(--text-muted); }
.review-text ul { color: var(--text-muted); }

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px 20px;
}
.step-num {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.step-body h3 { margin-bottom: .3rem; font-size: 1rem; }
.step-body p { margin: 0; font-size: .9rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
footer {
  background: #090b0f;
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--text-muted); font-size: .88rem; margin-top: 14px; max-width: 280px; }
.footer-col h3 { font-size: .9rem; color: var(--text-main); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: .88rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  text-align: center;
  color: var(--text-muted);
  font-size: .8rem;
  line-height: 1.7;
}
.footer-bottom a { color: var(--text-muted); }

/* ===== RESPONSIBLE GAMBLING ICONS ===== */
.rg-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 16px 0;
}
.rg-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: .78rem;
  color: var(--text-muted);
}

/* ===== SECTION TITLE ACCENT ===== */
.sec-label {
  display: inline-block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(245,166,35,.06) 0%, rgba(29,185,84,.05) 100%);
  border: 1px solid rgba(245,166,35,.25);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  margin: 24px 0;
}

/* ===== MOBILE NAV TOGGLE ===== */
.nav-toggle { display: none; background: none; border: none; color: var(--text-main); font-size: 1.5rem; cursor: pointer; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .top-nav { display: none; flex-direction: column; align-items: flex-start; gap: 10px; }
  .top-nav.open { display: flex; }
  .top-bar-inner { flex-wrap: wrap; }
  .nav-toggle { display: block; margin-left: auto; }
  .hero { padding: 48px 0 40px; }
  .bonus-card-hero { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .score-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .steps .step { flex-direction: column; }
}

@media (max-width: 420px) {
  .score-grid { grid-template-columns: 1fr 1fr; }
  .btn-primary { width: 100%; text-align: center; display: block; }
  h1 { font-size: 1.7rem; }
}
