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

:root {
  --bg-base:      #0D1F13;
  --bg-surface:   #122B1A;
  --bg-elevated:  #1A3D25;
  --bg-border:    #2E6040;

  --green-600:    #1A7A40;
  --green-500:    #22A055;
  --green-400:    #2DC96B;
  --green-200:    #A8F0C0;
  --green-100:    #D4F4E2;
  --green-50:     #F0FBF5;

  /* High-contrast text on dark backgrounds */
  --text-primary:   #F5F5F5;
  --text-secondary: #D0DDD5;
  --text-muted:     #9BB5A4;
  --white:          #FFFFFF;

  /* Gold */
  --gold:       #D4AF37;
  --gold-light: #F0CB5A;
  --gold-dark:  #A8881C;

  /* Semantic */
  --success: #22C55E;
  --danger:  #EF4444;
  --warning: #F59E0B;
  --info:    #38BDF8;

  /* Article / light content areas */
  --article-bg:   #F7FAF8;
  --article-text: #0D2016;
  --article-muted:#2D4A38;

  /* Typography */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   22px;
  --radius-full: 9999px;
}

/* ================================================
   RESET
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; }
* { min-width: 0; }

/* ================================================
   BASE — DARK PREMIUM
   ================================================ */
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.75;
  font-size: 16px;
}

/* Headings — always bright on dark bg */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}
h1 { font-size: clamp(26px, 4vw, 46px); }
h2 { font-size: clamp(20px, 3vw, 34px); }
h3 { font-size: clamp(16px, 2.5vw, 22px); }
h4 { font-size: 15px; font-family: var(--font-body); font-weight: 600; color: var(--text-secondary); }

p { margin-bottom: 1rem; color: var(--text-secondary); }
a { color: var(--green-400); text-decoration: none; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; color: var(--text-secondary); }
strong { color: var(--text-primary); }

/* ================================================
   LAYOUT
   ================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-dark     { background: var(--bg-surface); }
.section-base     { background: var(--bg-base); }
.section-elevated { background: var(--bg-elevated); }

/* Light article area */
.section-light {
  background: var(--article-bg);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin: 40px 0;
}
.section-light p,
.section-light li { color: var(--article-muted); }
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: var(--article-text); }
.section-light a { color: var(--green-600); }
.section-light strong { color: var(--article-text); }

/* ================================================
   DARK BG CONTRAST RULES — NEVER GREY ON DARK
   ================================================ */
.section-dark p,
.section-dark li,
.section-dark span:not(.provider-badge):not(.trust-badge):not(.stars),
.section-dark td { color: var(--text-secondary); }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark h4 { color: var(--green-200); }
.section-dark a { color: var(--green-400); }
.section-dark a:hover { color: var(--gold-light); }

.hero-content,
.hero-content p,
.hero-content li { color: var(--text-secondary); }
.hero-content h1,
.hero-content h2 { color: var(--white); }

/* ================================================
   TABLES — ALIGNED + READABLE
   ================================================ */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-border);
  margin: 20px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
  min-width: 500px;
}
thead { background: var(--green-600); }
th {
  color: var(--white);
  padding: 13px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  vertical-align: middle;
  border-right: 1px solid rgba(255,255,255,0.15);
}
th:last-child { border-right: none; }
th.center, td.center { text-align: center; }
th.right,  td.right  { text-align: right; }

tbody tr { border-bottom: 1px solid var(--bg-border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(odd)  { background: var(--bg-surface); }
tbody tr:nth-child(even) { background: var(--bg-base); }
tbody tr:hover { background: var(--bg-elevated); }
td {
  padding: 12px 16px;
  vertical-align: middle;
  color: var(--text-secondary);
  border-right: 1px solid var(--bg-border);
  word-wrap: break-word;
  line-height: 1.5;
}
td:last-child { border-right: none; }
td strong { color: var(--text-primary); }
.table-note { font-size: 12px; color: var(--text-muted); margin-top: -14px; margin-bottom: 20px; padding: 0 4px; }

/* ================================================
   HEADER / NAV
   ================================================ */
.site-header {
  background: var(--bg-surface);
  border-bottom: 2px solid var(--green-600);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 32px; height: 32px; flex-shrink: 0; }
.logo-m88  { color: var(--green-400); font-weight: 700; font-size: 18px; font-family: var(--font-display); }
.logo-play { color: var(--white);     font-weight: 700; font-size: 18px; font-family: var(--font-display); }

.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links > li > a {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--white); border-bottom-color: var(--green-400); }

.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%; left: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-top: 2px solid var(--green-500);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
  z-index: 300;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-secondary);
}
.dropdown-menu a:hover { background: var(--bg-border); color: var(--white); }

.nav-cta { display: flex; gap: 8px; align-items: center; }
.hamburger { display: none; }

/* ================================================
   BUTTONS
   ================================================ */
.btn-gold,
a.btn-gold,
.section-dark a.btn-gold,
.hero-content a.btn-gold {
  background: linear-gradient(135deg, #F0CB5A 0%, #D4AF37 45%, #A8881C 100%);
  color: #1A0F00 !important;
  padding: 13px 32px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 14px;
  transition: all .22s ease;
  display: inline-block;
  border: 1px solid rgba(255,220,80,0.4);
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(212,175,55,0.35), 0 1px 3px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.btn-gold::before,
a.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left .45s ease;
  pointer-events: none;
}
.btn-gold:hover::before,
a.btn-gold:hover::before { left: 130%; }
.btn-gold:hover,
a.btn-gold:hover {
  background: linear-gradient(135deg, #F8D96A 0%, #E8C040 45%, #C09920 100%);
  color: #1A0F00 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.5), 0 2px 6px rgba(0,0,0,0.3);
}
.btn-gold:active,
a.btn-gold:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(212,175,55,0.3); }

.btn-outline-light {
  background: linear-gradient(135deg, #F0CB5A 0%, #D4AF37 45%, #A8881C 100%);
  color: #1A0F00 !important;
  padding: 13px 32px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255,220,80,0.4);
  transition: all .22s ease;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(212,175,55,0.35), 0 1px 3px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.btn-outline-light::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left .45s ease;
  pointer-events: none;
}
.btn-outline-light:hover::before { left: 130%; }
.btn-outline-light:hover {
  background: linear-gradient(135deg, #F8D96A 0%, #E8C040 45%, #C09920 100%);
  color: #1A0F00 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.5), 0 2px 6px rgba(0,0,0,0.3);
}
.btn-outline-light:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(212,175,55,0.3); }

.btn-green {
  background: var(--green-600);
  color: var(--white);
  padding: 11px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  transition: background .2s;
  display: inline-block;
  text-align: center;
}
.btn-green:hover { background: var(--green-500); color: var(--white); }

.btn-alt {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  padding: 11px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--bg-border);
  transition: all .2s;
  display: inline-block;
  text-align: center;
}
.btn-alt:hover { border-color: var(--green-400); color: var(--white); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(13,31,19,0.98) 0%,
    rgba(13,31,19,0.85) 55%,
    rgba(13,31,19,0.45) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 80px 0;
}
.hero-content h1 { color: var(--white); margin-bottom: 16px; }
.hero-content p   { color: var(--text-secondary); font-size: 17px; margin-bottom: 0; }

.cta-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 28px; }
.trust-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.trust-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  color: var(--green-200);
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* ================================================
   CARDS
   ================================================ */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all .2s;
}
.card:hover { border-color: var(--green-500); box-shadow: 0 4px 24px rgba(0,0,0,0.4); transform: translateY(-2px); }
.card p, .card li { color: var(--text-secondary); }
.card h3, .card h4 { color: var(--white); }

/* Game category cards */
.game-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .2s;
  text-decoration: none;
  display: block;
}
.game-card:hover { border-color: var(--green-400); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.game-card-img { width: 100%; height: 160px; object-fit: cover; opacity: .85; }
.game-card-img-placeholder {
  width: 100%; height: 160px;
  background: linear-gradient(135deg, var(--bg-elevated), var(--green-600));
  display: flex; align-items: center; justify-content: center;
}
.game-card-body { padding: 16px 18px 20px; }
.game-card-title { font-weight: 700; font-size: 15px; color: var(--white); margin-bottom: 4px; font-family: var(--font-display); }
.game-card-sub { font-size: 12px; color: var(--text-muted); }
.provider-badge {
  display: inline-block;
  background: rgba(45,201,107,0.15);
  color: var(--green-400);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  margin-top: 10px;
  border: 1px solid rgba(45,201,107,0.3);
}

/* Trust cards */
.trust-card {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.trust-card p, .trust-card li { color: var(--text-secondary); }
.trust-card h4 { color: var(--white); margin-bottom: 8px; font-size: 14px; }
.trust-icon { font-size: 30px; margin-bottom: 14px; display: block; }

/* ================================================
   GRIDS
   ================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 14px; }

/* ================================================
   PROS / CONS
   ================================================ */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.pros {
  background: rgba(34,197,94,0.07);
  border: 1.5px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-md);
  padding: 22px;
}
.cons {
  background: rgba(239,68,68,0.07);
  border: 1.5px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-md);
  padding: 22px;
}
.pros p, .pros li { color: var(--text-secondary); }
.cons p, .cons li { color: var(--text-secondary); }
.pros h4 { color: #4ADE80; margin-bottom: 12px; font-size: 14px; }
.cons h4 { color: #F87171; margin-bottom: 12px; font-size: 14px; }
ul.pros-list { list-style: none; padding: 0; }
ul.cons-list { list-style: none; padding: 0; }
ul.pros-list li { color: var(--text-secondary); }
ul.cons-list li { color: var(--text-secondary); }
ul.pros-list li::before { content: "✓ "; color: #4ADE80; font-weight: 700; }
ul.cons-list li::before { content: "✗ "; color: #F87171; font-weight: 700; }

/* ================================================
   FAQ
   ================================================ */
.faq-list { margin-top: 8px; }
.faq-item { border-bottom: 1px solid var(--bg-border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-size: 15px;
  padding: 18px 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--green-400); }
.faq-answer {
  margin-bottom: 0;
  color: var(--text-secondary);
  display: none;
  font-size: 14px;
  padding-bottom: 16px;
  line-height: 1.7;
}
.faq-answer.open { display: block; }
.faq-icon { color: var(--green-400); font-size: 22px; font-weight: 400; flex-shrink: 0; margin-left: 16px; }

/* ================================================
   STAR RATINGS
   ================================================ */
.stars { color: var(--gold); font-size: 20px; letter-spacing: 3px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin: 8px 0; }
.rating-label { font-size: 13px; color: var(--text-secondary); }
.rating-score { font-weight: 700; color: var(--gold); font-size: 16px; }

/* ================================================
   BREADCRUMB
   ================================================ */
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 12px 0;
}
.breadcrumb a { color: var(--green-400); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 6px; color: var(--text-muted); }

/* ================================================
   AUTHOR BIO
   ================================================ */
.author-bio {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 36px 0;
}
.author-bio p, .author-bio li { color: var(--text-secondary); }
.author-bio strong { color: var(--white); }
.author-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* ================================================
   AGE BADGE + RESPONSIBLE GAMBLING
   ================================================ */
.age-badge {
  background: #B91C1C;
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
  margin-bottom: 12px;
}
.rg-banner {
  background: rgba(239,68,68,0.08);
  border: 1.5px solid rgba(239,68,68,0.25);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 13px;
  text-align: center;
  color: var(--text-secondary);
}
.rg-banner strong { color: #FFAAAA; }

/* ================================================
   ALT LINKS
   ================================================ */
.alt-links { display: flex; gap: 10px; flex-wrap: wrap; }

/* ================================================
   SECTION HEADER UTILITY
   ================================================ */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { max-width: 620px; margin: 12px auto 0; font-size: 16px; color: var(--text-secondary); }
.section-tag {
  display: inline-block;
  background: rgba(45,201,107,0.12);
  color: var(--green-400);
  border: 1px solid rgba(45,201,107,0.3);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* ================================================
   HIGHLIGHT BOX
   ================================================ */
.highlight-box {
  background: rgba(212,175,55,0.08);
  border: 1.5px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { color: var(--text-secondary); margin: 0; }
.highlight-box strong { color: var(--gold); }

/* Legal / transparency box */
.legal-box {
  background: rgba(56,189,248,0.06);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 28px 0;
}
.legal-box p { color: var(--text-secondary); margin: 0; font-size: 14px; line-height: 1.7; }

/* ================================================
   ARTICLE CONTENT (blog posts / guide text)
   ================================================ */
.article-body { max-width: 820px; }
.article-body h2 { margin-top: 36px; margin-bottom: 14px; color: var(--white); }
.article-body h3 { margin-top: 28px; margin-bottom: 10px; color: var(--green-200); }
.article-body p  { color: var(--text-secondary); }
.article-body ul, .article-body ol { margin-bottom: 1rem; }
.article-body li { color: var(--text-secondary); }

/* Reading time / meta */
.article-meta { display: flex; gap: 20px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.article-meta span { font-size: 13px; color: var(--text-muted); }
.article-meta time { font-size: 13px; color: var(--text-muted); }

/* ================================================
   RELATED POSTS
   ================================================ */
.related-posts { margin-top: 48px; }
.related-card {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all .2s;
  display: block;
  text-decoration: none;
}
.related-card:hover { border-color: var(--green-400); color: var(--white); }
.related-card-title { font-weight: 600; font-size: 14px; color: var(--white); margin-bottom: 6px; }
.related-card-desc  { font-size: 12px; color: var(--text-muted); }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 24px;
  margin-bottom: 44px;
}
.footer-grid h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--gold);
}
.footer-grid ul  { list-style: none; padding: 0; }
.footer-grid li  { margin-bottom: 8px; }
.footer-grid a   { font-size: 12px; color: var(--text-secondary); }
.footer-grid a:hover { color: var(--white); }
.footer-grid p   { font-size: 12px; color: var(--text-secondary); margin-bottom: 6px; }

.footer-legal { margin-bottom: 24px; }
.legal-disclaimer {
  font-size: 12px;
  color: var(--text-secondary);
  border-top: 1px solid var(--bg-border);
  padding-top: 22px;
  line-height: 1.7;
}

.footer-bottom { border-top: 1px solid var(--bg-border); padding-top: 24px; }
.footer-bottom p { font-size: 12px; color: var(--text-secondary); margin-bottom: 6px; }
.footer-bottom a { color: var(--text-secondary); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom nav { margin-top: 10px; }
.footer-bottom nav a { margin: 0 8px; }
.rg-line { color: #FF9999 !important; font-weight: 600; }

/* ================================================
   STEP LIST (HowTo guides)
   ================================================ */
.steps { list-style: none; padding: 0; counter-reset: step; }
.step {
  counter-increment: step;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bg-border);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--green-600);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.step-body h3 { color: var(--white); font-size: 16px; margin-bottom: 6px; }
.step-body p  { color: var(--text-secondary); margin: 0; font-size: 14px; }

/* ================================================
   MOBILE RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .grid-6 { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-light { padding: 28px; margin: 24px 0; }

  /* Mobile nav */
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--bg-border);
    border-bottom: 2px solid var(--green-500);
    padding: 12px 0;
    z-index: 300;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open li a { display: block; padding: 13px 20px; font-size: 15px; border-bottom: none; }
  .nav-cta.open {
    display: flex; flex-direction: column;
    padding: 12px 20px 16px;
    gap: 10px;
    background: var(--bg-elevated);
  }
  .nav-cta.open a { text-align: center; }
  .hamburger {
    display: flex; flex-direction: column;
    gap: 5px; cursor: pointer;
    background: none; border: none; padding: 6px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all .3s;
  }
  .dropdown-menu { display: none !important; }

  /* Grids */
  .grid-6 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }

  /* Hero */
  .hero { min-height: 400px; }
  .hero-content { padding: 48px 0; max-width: 100%; }
  .hero-overlay { background: rgba(13,31,19,0.95); }
  .cta-group { flex-direction: column; align-items: stretch; }
  .btn-gold, .btn-green, .btn-outline-light { width: 100%; text-align: center; padding: 15px 20px; }
  .alt-links { flex-direction: column; }
  .btn-alt { width: 100%; text-align: center; }

  .author-bio { flex-direction: column; }
  .trust-row { gap: 6px; }
  .trust-badge { font-size: 10px; padding: 4px 10px; }
  .game-card-img { height: 140px; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .section { padding: 36px 0; }
  .section-light { padding: 20px; }
  h1 { font-size: clamp(22px, 7vw, 30px); }
  h2 { font-size: clamp(18px, 6vw, 26px); }
  h3 { font-size: clamp(15px, 5vw, 20px); }
  .grid-6, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 340px; }
  .game-card-img { height: 120px; }
  .site-footer { padding: 40px 0 24px; }
  .section-header { margin-bottom: 32px; }
}

@media (max-width: 375px) {
  .container { padding: 0 10px; }
  h1 { font-size: 22px; }
  h2 { font-size: 18px; }
  .btn-gold, .btn-green, .btn-outline-light, .btn-alt { font-size: 13px; padding: 12px 14px; }
  .trust-badge { font-size: 10px; padding: 3px 8px; }
  .logo-m88, .logo-play { font-size: 16px; }
  .faq-question { font-size: 14px; }
}
