@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Oswald:wght@400;600;700&family=Nunito+Sans:wght@400;600;700&display=swap');

:root {
  --green: #0F1C2E;
  --green-mid: #1565C0;
  --green-light: #DBEAFE;
  --gold: #C9A130;
  --gold-light: #F0C84A;
  --gold-pale: #FEF9EC;
  --dark: #111827;
  --text: #374151;
  --muted: #6B7280;
  --border: #E5E7EB;
  --bg: #F8F9FA;
  --white: #FFFFFF;
  --red: #DC2626;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-mid); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  line-height: 1.25;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  color: var(--dark);
  font-weight: 600;
  letter-spacing: 0.02em;
}

p { margin-bottom: 0.9rem; }
p:last-child { margin-bottom: 0; }

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--dark);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(201,161,48,0.4);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  white-space: nowrap;
}
.btn-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,161,48,0.5);
  filter: brightness(1.05);
  color: var(--dark);
}
.btn-play:active { transform: translateY(0); }

.btn-play-lg {
  padding: 14px 32px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag-green { background: var(--green-light); color: var(--green); }
.tag-gold { background: var(--gold-pale); color: var(--gold); border: 1px solid #F0C84A50; }
.tag-red { background: #FEE2E2; color: var(--red); }

.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.section-alt { background: var(--bg); }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 10px;
}

.section-title {
  margin-bottom: 8px;
}

.gold-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 2px;
  margin-bottom: 28px;
}

/* ── HEADER ────────────────────────── */

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.15s;
}
nav a:hover { color: var(--green); }

.header-cta {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--green);
  color: white !important;
  padding: 7px 18px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.15s;
}
.header-cta:hover { background: var(--green-mid) !important; color: white !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.2s;
}

/* ── HERO ─────────────────────────── */

.hero {
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 50%, #FFFCF0 100%);
  padding: 64px 0 48px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21,101,192,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1px solid rgba(21,101,192,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-mid);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 { margin-bottom: 16px; }

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  display: block;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── TOP PICKS ────────────────────── */

.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.pick-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.pick-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}
.pick-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pick-rank {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.pick-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.pick-speed {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}

.pick-method {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.pick-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.stars { color: var(--gold); }

/* ── COMPARISON TABLE ─────────────── */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.casino-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}

.casino-table thead th {
  background: var(--green);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}
.casino-table thead th:last-child { text-align: center; }

.casino-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.casino-table tbody tr:last-child { border-bottom: none; }
.casino-table tbody tr:hover { background: #EFF6FF; }
.casino-table tbody tr.top-pick { background: #EFF6FF; }

.casino-table td {
  padding: 14px 16px;
  vertical-align: middle;
}

.casino-name-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.casino-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}

.casino-avatar.av-green { background: linear-gradient(135deg, #1565C0, #0F1C2E); }
.casino-avatar.av-blue { background: linear-gradient(135deg, #1A5276, #154360); }
.casino-avatar.av-purple { background: linear-gradient(135deg, #6B3FA0, #4A2878); }
.casino-avatar.av-red { background: linear-gradient(135deg, #C0392B, #922B21); }
.casino-avatar.av-teal { background: linear-gradient(135deg, #0E6655, #0B5345); }
.casino-avatar.av-navy { background: linear-gradient(135deg, #1B3A6B, #122652); }
.casino-avatar.av-orange { background: linear-gradient(135deg, #CA6F1E, #9C5617); }
.casino-avatar.av-dark { background: linear-gradient(135deg, #2C3E50, #1A252F); }

.casino-label {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}

.licence-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.lic-curacao { background: #EFF6FF; color: #1D4ED8; }
.lic-mga { background: #F0FDF4; color: #166534; }
.lic-kahnawake { background: #FEF9EC; color: #92400E; }

.fastest-cell {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green);
}

.avg-cell {
  color: var(--text);
  font-size: 0.88rem;
}

.same-day-yes { color: var(--green); font-weight: 700; }
.same-day-partial { color: var(--gold); font-weight: 700; }
.same-day-no { color: var(--red); font-weight: 700; }

.rating-cell {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.table-cta-cell { text-align: center; }

/* ── CASINO REVIEW CARDS ──────────── */

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, #EFF6FF 0%, var(--white) 100%);
  flex-wrap: wrap;
  gap: 12px;
}

.review-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.review-meta { }
.review-rank {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

.review-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.review-rating {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.review-speed-badge {
  background: var(--gold-pale);
  border: 1px solid rgba(201,161,48,0.3);
  border-radius: 50px;
  padding: 4px 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold);
}

.review-body {
  padding: 24px;
}

.review-desc {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 20px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.pros-box, .cons-box {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.pros-box { background: #EFF6FF; border: 1px solid #BFDBFE; }
.cons-box { background: #FFF7F7; border: 1px solid #FECACA; }

.pros-cons-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pros-box .pros-cons-title { color: var(--green); }
.cons-box .pros-cons-title { color: var(--red); }

.pros-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pros-cons ul li {
  font-size: 0.84rem;
  padding-left: 18px;
  position: relative;
  color: var(--text);
}
.pros-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons-box ul li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  flex-wrap: wrap;
  gap: 10px;
}

.review-best-for {
  font-size: 0.84rem;
  color: var(--muted);
}
.review-best-for strong {
  color: var(--dark);
  font-weight: 700;
}

/* ── METHODOLOGY ─────────────────── */

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.method-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
}

.method-step-num {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.method-step h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.method-step p {
  font-size: 0.84rem;
  color: var(--muted);
}

/* ── PAYMENT TABLE ────────────────── */

.payment-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.88rem;
}
.payment-table thead th {
  background: #111827;
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.payment-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.payment-table tbody tr:last-child td { border-bottom: none; }
.payment-table tbody tr:hover { background: var(--bg); }

.method-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--dark);
}

.speed-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.speed-bar {
  height: 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.speed-bar.s1 { width: 20px; background: var(--green); }
.speed-bar.s2 { width: 40px; background: #1A5276; }
.speed-bar.s3 { width: 90px; background: var(--gold); }
.speed-bar.s4 { width: 160px; background: var(--red); }

/* ── FAQ ─────────────────────────── */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── KYC TABLE ────────────────────── */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.info-card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.info-card h4 {
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.info-card p {
  font-size: 0.82rem;
  color: var(--muted);
}
.info-card .value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 2px;
}

/* ── RESPONSIBLE GAMBLING ─────────── */

.rg-box {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: var(--radius);
  padding: 32px;
  color: white;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.rg-icon { font-size: 2.5rem; flex-shrink: 0; }
.rg-box h3 { color: var(--gold-light); font-family: 'Oswald', sans-serif; font-size: 1.2rem; margin-bottom: 8px; }
.rg-box p { color: rgba(255,255,255,0.88); font-size: 0.9rem; }
.rg-box ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.rg-box ul li { color: rgba(255,255,255,0.85); font-size: 0.88rem; padding-left: 16px; position: relative; }
.rg-box ul li::before { content: '›'; position: absolute; left: 0; color: var(--gold-light); font-weight: bold; }
.rg-phone {
  display: inline-block;
  margin-top: 10px;
  background: var(--gold-light);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ── FOOTER ──────────────────────── */

footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 24px;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-logo-wrap {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 14px;
  display: inline-block;
}

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--gold-light); }

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

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  max-width: 600px;
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.age-badge {
  background: var(--red);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 6px;
}

.licence-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

/* ── CRYPTO VS FIAT SECTION ───────── */

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.split-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.split-card h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.split-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.split-card ul li {
  font-size: 0.88rem;
  padding-left: 18px;
  position: relative;
  color: var(--text);
}
.split-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.highlight-box {
  background: linear-gradient(135deg, var(--green-light), #EFF6FF);
  border: 1px solid rgba(21,101,192,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 20px;
  font-size: 0.9rem;
}
.highlight-box strong { color: var(--green); }

/* ── UTILITY ─────────────────────── */

.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

.inline-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin: 24px auto;
}

.scroll-anchor { scroll-margin-top: 80px; }

/* ── RESPONSIVE ──────────────────── */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .picks-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .method-steps { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .split-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { display: none; }
  nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  nav.mobile-open a { font-size: 1rem; }
  .hamburger { display: flex; }
  .header-cta-wrap { display: none; }

  .table-wrap { border-radius: var(--radius-sm); }
  .casino-table thead { display: none; }
  .casino-table tbody tr {
    display: block;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .casino-table tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
  }
  .casino-table tbody td:last-child { border-bottom: none; }
  .casino-table tbody td::before {
    content: attr(data-label);
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    flex-shrink: 0;
    margin-right: 10px;
  }
  .casino-table td.casino-name-td {
    background: linear-gradient(90deg, #EFF6FF, var(--white));
    padding: 14px;
    justify-content: flex-start;
    flex-direction: row;
    border-bottom: 2px solid var(--green-light);
  }
  .casino-table td.casino-name-td::before { display: none; }
  .table-cta-cell { justify-content: center; padding: 14px; }
  .table-cta-cell::before { display: none; }
  .table-wrap { border: none; box-shadow: none; background: transparent; }

  .review-header { flex-direction: column; align-items: flex-start; }
  .review-header-right { align-items: flex-start; flex-direction: row; align-items: center; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .info-grid { grid-template-columns: 1fr; }
  .rg-box { flex-direction: column; gap: 12px; }
  .picks-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 0 32px; }
  .section { padding: 40px 0; }
  h1 { font-size: 1.7rem; }
  .hero-stats { gap: 12px; }
  .hero-stat { padding: 10px 14px; }
  .hero-stat-value { font-size: 1.2rem; }
  .review-body { padding: 16px; }
  .review-header { padding: 14px 16px; }
  .review-footer { padding: 12px 16px; }
}
