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

:root {
  --bg: #0e112b;
  --bg-alt: #0a0c22;
  --panel: #171a3d;
  --panel-2: #1e2246;
  --border: rgba(255,255,255,.08);
  --text: #ffffff;
  --text-dim: #9a9dc4;
  --green: #1abd8c;
  --green-light: #2ee6ab;
  --green-dark: #14a077;
  --indigo: #343a6c;
  --purple-start: #1b2955;
  --purple-end: #4a2170;
  --gold: #f0b429;
  --red: #ff4d5a;
  --radius: 14px;
  --maxw: 1180px;
  --font-brand: "Baloo 2", "Nunito", sans-serif;
  --font-display: "Poppins", "Baloo 2", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(26,189,140,.12);
  border: 1px solid rgba(26,189,140,.3);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; margin: 0 0 12px; letter-spacing: -.01em; }
h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; }
h2 .accent { color: var(--green); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head p { color: var(--text-dim); font-size: 16px; }
section { padding: 88px 0; border-bottom: 1px solid var(--border); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 8px 24px -8px rgba(26,189,140,.55);
}
.btn-primary:hover { background: var(--green-light); }
.btn-ghost {
  background: var(--indigo);
  border-color: transparent;
  color: var(--text);
}
.btn-block { width: 100%; }

/* Rectangular content CTA buttons (matches the review-page style, distinct from pill nav buttons) */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease;
}
.btn-cta:hover { transform: translateY(-1px); }
.btn-cta-solid { background: var(--indigo); color: #fff; }
.btn-cta-solid:hover { background: #454c86; }
.btn-cta-outline { background: transparent; border-color: rgba(26,189,140,.5); color: var(--green-light); }
.btn-cta-outline:hover { background: rgba(26,189,140,.08); }

/* Prose content (review-article style paragraphs between tables) */
.prose { color: var(--text-dim); font-size: 15.5px; line-height: 1.75; max-width: 900px; margin: 0 0 22px; }
.prose strong { color: var(--text); }

/* Data tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (max-width: 700px) {
  .data-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-table th, .data-table td { white-space: nowrap; }
}
.data-table th, .data-table td { padding: 13px 20px; text-align: left; font-size: 14px; }
.data-table thead th {
  background: rgba(26,189,140,.14);
  color: var(--green-light);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.data-table tbody tr { background: var(--bg-alt); }
.data-table tbody tr:nth-child(even) { background: var(--panel); }
.data-table tbody td:first-child { color: var(--text); font-weight: 600; }
.data-table tbody td { color: var(--text-dim); border-top: 1px solid var(--border); }

/* Category divider (used above grouped game grids) */
.divider-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 20px;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-light);
}
.divider-label::before, .divider-label::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(26,189,140,.35), transparent); }
.divider-label:first-child { margin-top: 0; }

/* Table of contents accordion */
.toc {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: 12px;
  color: #04140f;
  margin-bottom: 56px;
  overflow: hidden;
  cursor: pointer;
}
.toc-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; font-family: var(--font-brand); font-weight: 700; font-size: 15px; }
.toc-head .chev { transition: transform .2s ease; }
.toc.open .toc-head .chev { transform: rotate(180deg); }
.toc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  background: rgba(4,20,15,.14);
}
.toc.open .toc-body { max-height: 400px; }
.toc-body-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 20px;
  padding: 18px 24px 22px;
}
.toc-body-grid a { font-size: 14px; font-weight: 600; color: #04140f; opacity: .85; }
.toc-body-grid a:hover { opacity: 1; text-decoration: underline; }

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand .burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.brand .burger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; }
.brand .burger span:first-child { width: 14px; }
.brand img { height: 26px; width: auto; }
nav.primary {
  display: flex; gap: 4px; align-items: center; flex-wrap: nowrap;
  overflow-x: auto; scrollbar-width: none; flex: 1;
}
nav.primary::-webkit-scrollbar { display: none; }
nav.primary a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-brand);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
nav.primary a .ic { color: var(--green); display: inline-flex; }
nav.primary a:hover { background: rgba(255,255,255,.06); }
nav.primary a.featured {
  background: linear-gradient(90deg, var(--purple-start), var(--purple-end));
  box-shadow: 0 0 0 1px rgba(150,110,255,.45), 0 0 18px -4px rgba(150,110,255,.55);
}
nav.primary a.featured:hover { filter: brightness(1.1); }
.nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 280px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 14px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 700;
}
.lang-switch a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--text-dim);
}
.lang-switch a.active { color: var(--text); background: var(--panel-2); }
.lang-switch a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav-actions .btn { padding: 11px 22px; white-space: nowrap; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

.burger-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--panel);
  border-bottom: 1px solid transparent;
  transition: max-height .25s ease;
}
.burger-menu.open { max-height: 400px; border-bottom-color: var(--border); }
.burger-menu-grid {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 10px 28px;
  padding: 22px 24px;
}
.burger-menu-grid a {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-dim);
}
.burger-menu-grid a:hover { color: var(--green-light); }

/* Hero */
.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(700px 420px at 82% -10%, rgba(26,189,140,.16), transparent 60%),
    radial-gradient(600px 380px at 0% 10%, rgba(122,60,190,.20), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { font-family: var(--font-display); font-size: clamp(34px, 5vw, 54px); font-weight: 900; line-height: 1.06; margin-bottom: 18px; }
.hero h1 span { color: var(--green); }
.hero p.lead { color: var(--text-dim); font-size: 18px; max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; margin-bottom: 34px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-size: 24px; color: var(--green); }
.hero-stats div span { font-size: 13px; color: var(--text-dim); }

.hero-cards { display: grid; gap: 16px; }
.promo-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease;
}
.promo-card:hover { transform: translateY(-2px); border-color: rgba(26,189,140,.4); }
.promo-card .tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.promo-card .title { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.promo-card .value { font-size: 26px; font-weight: 800; color: var(--green); }
.promo-card .sub { font-size: 13px; color: var(--text-dim); }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.card .icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(26,189,140,.14);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 14.5px; margin: 0; }

/* Games */
.game-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.game-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  background: var(--panel-2);
}
.game-tile img { width: 100%; height: 100%; object-fit: cover; }
.game-tile .label {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  padding: 20px 10px 8px;
  font-size: 12px; font-weight: 700;
}
.provider-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 40px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.provider-row img { height: 22px; width: auto; filter: grayscale(1) brightness(1.6) contrast(0.9); opacity: .8; }

/* Bonus cards */
.bonus-card {
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.bonus-card .step { font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; }
.bonus-card h3 { font-size: 20px; margin: 10px 0 6px; }
.bonus-card .amount { font-size: 32px; font-weight: 800; color: var(--green); margin-bottom: 10px; }
.bonus-card p { color: var(--text-dim); font-size: 14px; }

/* cashback table */
.cashback-table { width: 100%; border-collapse: collapse; margin-top: 30px; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); }
.cashback-table th, .cashback-table td { padding: 14px 20px; text-align: left; font-size: 14.5px; }
.cashback-table thead { background: var(--panel-2); }
.cashback-table th { color: var(--text-dim); font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: .06em; }
.cashback-table tbody tr { background: var(--panel); border-top: 1px solid var(--border); }
.cashback-table td.pct { color: var(--green); font-weight: 800; }

/* VIP tiers */
.tier-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 44px; }
.tier-pill {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}
.tier-pill .name { font-weight: 800; font-size: 14px; margin-bottom: 4px; }
.tier-pill .cp { font-size: 12px; color: var(--text-dim); }
.tier-pill.diamond { border-color: rgba(240,180,41,.5); background: linear-gradient(160deg, rgba(240,180,41,.12), var(--panel)); }
.tier-pill.diamond .name { color: var(--gold); }

.vip-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.vip-card h3 { font-size: 17px; margin-bottom: 4px; }
.vip-card .cashback-min { color: var(--green); font-weight: 700; font-size: 14px; margin-bottom: 14px; }
.vip-card ul { margin: 0; padding-left: 18px; color: var(--text-dim); font-size: 13.5px; }
.vip-card ul li { margin-bottom: 6px; }

/* Loyalty */
.loyalty-box {
  background: linear-gradient(135deg, rgba(26,189,140,.14), rgba(122,60,190,.16));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.loyalty-box .prize { font-size: 40px; font-weight: 800; color: var(--green); }
.progress-bar { height: 10px; border-radius: 999px; background: var(--panel-2); overflow: hidden; margin: 18px 0; }
.progress-bar span { display: block; height: 100%; width: 62%; background: linear-gradient(90deg, var(--green), var(--gold)); }
.level-dots { display: flex; gap: 6px; flex-wrap: wrap; }
.level-dots div { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.level-dots div.done { background: var(--green); }

/* Mystery cases */
.case-card {
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  border: 1px solid var(--border);
}
.case-card.common { background: linear-gradient(160deg, rgba(154,157,176,.12), var(--panel)); }
.case-card.rare { background: linear-gradient(160deg, rgba(26,189,140,.16), var(--panel)); }
.case-card.epic { background: linear-gradient(160deg, var(--purple-start), var(--purple-end)); border-color: rgba(150,110,255,.4); }
.case-card .badge { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; display: inline-block; }
.case-card.common .badge { color: #b9bccb; }
.case-card.rare .badge { color: var(--green-light); }
.case-card.epic .badge { color: #d9b8ff; }
.case-card.epic p { color: rgba(255,255,255,.65); }
.case-card .prize { font-size: 26px; font-weight: 800; margin: 10px 0; }
.case-card p { color: var(--text-dim); font-size: 13.5px; }

/* Promotions */
.promo-tile {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.promo-tile .kind { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text-dim); letter-spacing: .06em; }
.promo-tile h3 { margin: 10px 0 6px; font-size: 19px; }
.promo-tile .pool { color: var(--green); font-weight: 800; font-size: 20px; margin-bottom: 10px; }
.promo-tile p { color: var(--text-dim); font-size: 13.5px; }

/* payments */
.pay-methods { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.pay-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--panel); border: 1px solid var(--border);
  padding: 12px 18px; border-radius: 10px;
}
.pay-chip img { height: 18px; width: auto; filter: brightness(1.4); }
.limits-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.limits-row .card strong { display: block; color: var(--green); font-size: 20px; margin-bottom: 4px; }

/* Responsible gaming */
.rg-section { background: var(--bg-alt); }
.rg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px; }
.rg-badges { display: flex; gap: 22px; align-items: center; margin-top: 34px; flex-wrap: wrap; }
.rg-badges img { height: 34px; width: auto; opacity: .85; }
.rg-note {
  margin-top: 30px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255,77,90,.08);
  border: 1px solid rgba(255,77,90,.28);
  color: #ffb4bb;
  font-size: 13.5px;
}

/* FAQ */
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}
.faq-q .plus { color: var(--green); font-size: 20px; transition: transform .2s ease; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  color: var(--text-dim);
  font-size: 14px;
  padding: 0 22px;
}
.faq-item.open .faq-a { padding-bottom: 18px; }

/* Footer */
footer {
  background: var(--bg-alt);
  padding: 60px 0 30px;
}
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 30px; margin-bottom: 40px; }
.footer-brand img { height: 26px; margin-bottom: 14px; }
.footer-brand p { color: var(--text-dim); font-size: 13.5px; max-width: 280px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-dim); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text); font-size: 14px; margin-bottom: 10px; opacity: .85; }
.footer-col a:hover { opacity: 1; color: var(--green); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--panel); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  color: var(--text-dim);
  font-size: 12.5px;
  line-height: 1.7;
}
.footer-legal .disclaimer {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  border: 1px dashed var(--border);
  color: #c7c9d6;
}
.footer-badges { display: flex; gap: 16px; align-items: center; margin: 18px 0; flex-wrap: wrap; }
.footer-badges img { height: 30px; opacity: .8; }

@media (max-width: 1300px) {
  .nav-search { display: none; }
}
@media (max-width: 980px) {
  nav.primary { display: none; }
  .burger-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .game-strip { grid-template-columns: repeat(3, 1fr); }
  .tier-track { grid-template-columns: repeat(3, 1fr); }
  .loyalty-box { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .rg-grid { grid-template-columns: repeat(2, 1fr); }
  .limits-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  section { padding: 60px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .game-strip { grid-template-columns: repeat(2, 1fr); }
  .tier-track { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { gap: 20px 28px; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .brand { gap: 8px; }
  .brand img { height: 22px; }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn { padding: 10px 18px; font-size: 14px; }
  .lang-switch { display: none; }
}
