:root {
  --green-dark: #1a6b2a;
  --green-mid: #2d8c3e;
  --green-accent: #97c230;
  --green-light: #b8db60;
  --charcoal: #1a1a1a;
  --charcoal-mid: #2c2c2c;
  --grey-dark: #444444;
  --grey-mid: #777777;
  --grey-light: #e8e8e8;
  --grey-bg: #f5f5f5;
  --white: #ffffff;
  --gold: #f5c518;
  --red-warn: #c0392b;
  --font-main: 'Segoe UI', Arial, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 6px 28px rgba(0,0,0,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
}

a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green-accent); text-decoration: underline; }

img { display: none !important; }

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

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  background: var(--charcoal);
  border-bottom: 3px solid var(--green-accent);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-svg-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-text .brand-tagline {
  font-size: 0.7rem;
  color: var(--green-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.header-nav {
  display: flex;
  gap: 8px;
}
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--green-accent);
  color: var(--charcoal);
}
.btn-primary:hover { background: var(--green-light); color: var(--charcoal); box-shadow: 0 4px 16px rgba(151,194,48,0.4); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--charcoal); }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-xl { padding: 16px 40px; font-size: 1.15rem; letter-spacing: 0.3px; }

/* ─── TOP BONUS BANNER ───────────────────────────────────── */
.bonus-banner-top {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, #1e7a2f 100%);
  padding: 18px 20px;
  text-align: center;
  border-bottom: 2px solid var(--green-accent);
}
.bonus-banner-top .banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.bonus-banner-top .banner-text {
  color: var(--white);
}
.bonus-banner-top .banner-headline {
  font-size: 1.15rem;
  font-weight: 700;
  display: block;
}
.bonus-banner-top .banner-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  display: block;
}
.bonus-label {
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 6px;
}

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--charcoal) 0%, #0f3318 45%, var(--green-dark) 100%);
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(151,194,48,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.8rem;
  color: var(--green-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero h1 .accent { color: var(--green-accent); }
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-accent);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ─── SECTIONS ───────────────────────────────────────────── */
section { padding: 60px 0; }
section:nth-child(even) { background: var(--grey-bg); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 12px;
}
h2 .green { color: var(--green-dark); }
.section-intro {
  font-size: 1rem;
  color: var(--grey-dark);
  max-width: 720px;
  margin-bottom: 32px;
  line-height: 1.75;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  margin-top: 0;
}

/* ─── OVERVIEW TABLE ─────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--white);
}
thead th {
  background: var(--green-dark);
  color: var(--white);
  padding: 13px 16px;
  font-size: 0.85rem;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.93rem;
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) td { background: #f9fdf9; }
tbody td:first-child { font-weight: 600; color: var(--charcoal); white-space: nowrap; }

/* ─── STEPS ──────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green-accent);
  position: relative;
}
.step-num {
  width: 38px;
  height: 38px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--grey-dark); line-height: 1.6; }

/* ─── GAMES CARDS ────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.game-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  transition: box-shadow 0.2s, transform 0.2s;
}
.game-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.game-card-icon {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}
.game-card-icon.slots-icon { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); }
.game-card-icon.live-icon { background: linear-gradient(135deg, #1a1a6b, #2d3c8c); }
.game-card-icon.sports-icon { background: linear-gradient(135deg, #6b1a1a, #8c2d2d); }
.game-card-icon.poker-icon { background: linear-gradient(135deg, #4a1a6b, #6b2d8c); }
.game-card-body { padding: 20px; }
.game-card-body h3 { font-size: 1.06rem; margin-bottom: 10px; }
.game-card-body p { font-size: 0.9rem; color: var(--grey-dark); line-height: 1.65; margin-bottom: 16px; }

/* ─── BONUS SECTION ──────────────────────────────────────── */
.bonus-mid-banner {
  background: linear-gradient(135deg, #0f3318, var(--green-dark));
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  margin: 36px 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(151,194,48,0.3);
}
.bonus-mid-banner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}
.bonus-mid-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  margin-bottom: 22px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.bonus-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-accent);
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.bonus-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  border-top: 3px solid var(--green-accent);
  text-align: center;
}
.bonus-card-icon { font-size: 2rem; margin-bottom: 10px; }
.bonus-card h3 { font-size: 1rem; margin-bottom: 8px; }
.bonus-card p { font-size: 0.88rem; color: var(--grey-dark); margin-bottom: 14px; line-height: 1.6; }

/* ─── LOYALTY ────────────────────────────────────────────── */
.loyalty-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.tier-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid transparent;
}
.tier-card.bronze { border-color: #cd7f32; }
.tier-card.silver { border-color: #c0c0c0; }
.tier-card.gold { border-color: var(--gold); }
.tier-card.platinum { border-color: #b4d2e7; }
.tier-card.diamond { border-color: #a8d8f0; }
.tier-card.elite { border-color: #8a2be2; }
.tier-icon { font-size: 2rem; margin-bottom: 8px; }
.tier-card h3 { font-size: 1rem; margin-bottom: 6px; }
.tier-pts { font-size: 0.78rem; color: var(--grey-mid); margin-bottom: 6px; }
.tier-benefit { font-size: 0.84rem; color: var(--grey-dark); line-height: 1.55; }

/* ─── PROS CONS ──────────────────────────────────────────── */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.pros-box, .cons-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.pros-box { border-top: 4px solid #2ecc71; }
.cons-box { border-top: 4px solid var(--red-warn); }
.box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.box-header h3 { margin-bottom: 0; font-size: 1.1rem; }
.pros-box .box-header h3 { color: #27ae60; }
.cons-box .box-header h3 { color: var(--red-warn); }
.pros-cons-list { list-style: none; padding: 0; }
.pros-cons-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.93rem;
  border-bottom: 1px solid var(--grey-light);
  line-height: 1.55;
}
.pros-cons-list li:last-child { border-bottom: none; }
.pros-cons-list li::before {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 1rem;
}
.pros-list li::before { content: '✓'; color: #27ae60; font-weight: 700; }
.cons-list li::before { content: '✗'; color: var(--red-warn); font-weight: 700; }

/* ─── MOBILE APP ─────────────────────────────────────────── */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.app-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
}
.app-card-icon { font-size: 2.5rem; margin-bottom: 14px; }
.app-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.app-card p { font-size: 0.92rem; color: var(--grey-dark); margin-bottom: 18px; line-height: 1.65; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { margin-top: 28px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 50px 18px 20px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  position: relative;
  font-family: var(--font-main);
  transition: color 0.2s;
  display: block;
}
.faq-question:hover { color: var(--green-dark); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--green-dark);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.2s;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 18px;
}
.faq-answer p { font-size: 0.93rem; color: var(--grey-dark); line-height: 1.7; }

/* ─── INFO CARDS (REVIEW BODY) ───────────────────────────── */
.text-content { max-width: 820px; }
.text-content p { margin-bottom: 18px; font-size: 0.97rem; color: var(--charcoal-mid); line-height: 1.8; }
.text-content h3 { margin-top: 28px; margin-bottom: 10px; }
.highlight-box {
  background: linear-gradient(135deg, #f0f8e8, #e6f3d3);
  border-left: 4px solid var(--green-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
}

/* ─── RATING BLOCK ───────────────────────────────────────── */
.rating-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  border: 1px solid var(--grey-light);
}
.rating-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.rating-score { font-size: 1.6rem; font-weight: 700; color: var(--charcoal); font-family: var(--font-display); }
.rating-label { font-size: 0.82rem; color: var(--grey-mid); }

/* ─── PAYMENT STEPS ──────────────────────────────────────── */
.pay-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.pay-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
}
.pay-step-num {
  width: 30px;
  height: 30px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 auto 8px;
}
.pay-step p { font-size: 0.82rem; color: var(--grey-dark); line-height: 1.5; }

/* ─── RESPONSIBLE GAMBLING ───────────────────────────────── */
.rg-section {
  background: var(--charcoal);
  padding: 50px 0;
}
.rg-section h2 { color: var(--white); }
.rg-section .section-label { color: var(--green-accent); }
.rg-section p { color: rgba(255,255,255,0.75); margin-bottom: 16px; font-size: 0.93rem; line-height: 1.75; }
.rg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.rg-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
}
.rg-card h3 { color: var(--green-accent); font-size: 0.98rem; margin-bottom: 8px; }
.rg-card p { font-size: 0.87rem; color: rgba(255,255,255,0.65); margin-bottom: 0; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #111111;
  padding: 50px 0 30px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-about .logo-text .brand-name { font-size: 1.2rem; }
.footer-about p {
  margin-top: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-size: 0.87rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.87rem; }
.footer-links a:hover { color: var(--green-accent); text-decoration: none; }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.footer-license {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.license-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.age-badge {
  background: var(--red-warn);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 6px;
}
.footer-copy { color: rgba(255,255,255,0.38); font-size: 0.82rem; }
.disclaimer {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .header-nav .btn-secondary { display: none; }
  .hero { padding: 48px 16px 40px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { gap: 18px; }
  .proscons-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .bonus-mid-banner { padding: 26px 18px; }
  section { padding: 44px 0; }
}
@media (max-width: 540px) {
  .logo-text .brand-name { font-size: 1.15rem; }
  .logo-text .brand-tagline { display: none; }
  .header-inner { padding: 12px 14px; }
  .games-grid { grid-template-columns: 1fr; }
  .loyalty-tiers { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .bonus-cards { grid-template-columns: 1fr; }
  h2 { font-size: 1.35rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .bonus-amount { font-size: 1.7rem; }
  .rg-cards { grid-template-columns: 1fr; }
  .pay-steps { grid-template-columns: 1fr 1fr; }
}
