/* spinto-bonus.site — лендинг Spinto / Спинто. Палитра «Виолет + лайм»: глубокий баклажан + неон-фиолет + лайм */

:root {
  --bg: #150a1c;
  --bg-2: #22132f;
  --bg-3: #2c1a3c;
  --line: #3a2550;
  --line-2: #4d3266;
  --txt: #f3e8f5;
  --txt-d: #a895b8;
  --txt-dd: #7d6890;
  --acc: #a855f7;
  --acc-d: #8a3de0;
  --acc-2: #b6f24a;
  --acc-2-d: #97cf2e;
  --hot: #ff5da2;
  --r: 14px;
  --r-s: 9px;
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  margin: 0;
  font: 16px/1.64 "Be Vietnam Pro", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Arial, sans-serif;
  color: var(--txt);
  background:
    radial-gradient(1050px 600px at 88% -12%, rgba(168, 85, 247, .20) 0%, transparent 62%),
    radial-gradient(880px 600px at -12% 56%, rgba(182, 242, 74, .07) 0%, transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto }
a { color: var(--acc); text-decoration: none }
a:hover { text-decoration: underline }
.bonz-strong { color: var(--acc-2); font-weight: 600 }

.bonz-skip {
  position: absolute; top: -44px; left: 8px;
  padding: 8px 12px; background: var(--acc-2); color: #122000;
  border-radius: 6px; z-index: 100; font-weight: 700;
}
.bonz-skip:focus { top: 8px }

/* ===== TOP BAR ===== */
.bonz-bar {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(21, 10, 28, .84);
  backdrop-filter: blur(11px);
  position: sticky; top: 0; z-index: 50;
}
.bonz-logo { display: flex; align-items: center; gap: 11px; color: var(--txt) }
.bonz-logo:hover { text-decoration: none }
.bonz-logo__svg {
  width: 32px; height: 32px; flex: none;
  filter: drop-shadow(0 0 11px rgba(168, 85, 247, .6));
}
.bonz-logo__t {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-weight: 800; line-height: 1; letter-spacing: -.3px;
}
.bonz-logo__sub {
  display: block; font-family: "Pacifico", cursive;
  font-size: 12px; color: var(--acc-2); font-weight: 400;
  letter-spacing: .4px; margin-top: 5px; text-transform: none;
}
.bonz-nav { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap }
.bonz-nav a {
  color: var(--txt-d); font-size: 14px; padding: 4px 0;
  border-bottom: 1px solid transparent; transition: color .15s, border-color .15s;
}
.bonz-nav a:hover { color: var(--acc-2); border-bottom-color: var(--acc-2); text-decoration: none }

/* ===== CTA ===== */
.bonz-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px; border-radius: 10px;
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-weight: 700; font-size: 14px;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .15s, box-shadow .2s, background .2s;
  cursor: pointer; letter-spacing: -.1px;
}
.bonz-cta:hover { text-decoration: none; transform: translateY(-1px) }
.bonz-cta--small { background: var(--bg-3); color: var(--txt); border-color: var(--line) }
.bonz-cta--small:hover { background: var(--bg-2); border-color: var(--acc) }
.bonz-cta--big { padding: 15px 28px; font-size: 15px; border-radius: 12px }
.bonz-cta--hot {
  background: linear-gradient(120deg, var(--acc) 0%, var(--acc-d) 100%);
  color: #fff; border: 0;
  box-shadow: 0 13px 32px -10px rgba(168, 85, 247, .8);
  font-weight: 700;
}
.bonz-cta--hot:hover { box-shadow: 0 17px 40px -8px rgba(168, 85, 247, 1) }
.bonz-cta--ghost { background: transparent; color: var(--txt); border-color: var(--line-2) }
.bonz-cta--ghost:hover { border-color: var(--acc-2); color: var(--acc-2) }

/* ===== AGGREGATE COUNTER STRIP ===== */
.bonz-metr {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; padding: 10px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(168, 85, 247, .07), rgba(182, 242, 74, .04));
  font-size: 13px;
}
.bonz-metr__cell {
  display: flex; flex-direction: column; gap: 2px;
  padding: 6px 14px;
  border-right: 1px solid var(--line);
  align-items: flex-start;
}
.bonz-metr__cell:last-child { border-right: 0 }
.bonz-metr__num {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-weight: 800; font-size: 15px; color: var(--acc-2);
  letter-spacing: -.2px;
}
.bonz-metr__lbl { font-size: 11px; color: var(--txt-d); letter-spacing: .6px; text-transform: uppercase }

/* ===== HERO ===== */
.bonz-hero {
  display: grid; grid-template-columns: 1.18fr 1fr; gap: 36px;
  padding: 46px 22px 30px;
  max-width: 1240px; margin: 0 auto;
  align-items: center;
}
.bonz-hero__chip {
  display: inline-block;
  font-size: 11px; letter-spacing: 1.4px; color: var(--acc-2);
  background: rgba(182, 242, 74, .08);
  border: 1px solid rgba(182, 242, 74, .28);
  padding: 6px 12px; border-radius: 5px;
  margin: 0 0 18px;
  text-transform: uppercase; font-weight: 700;
}
h1 {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-size: clamp(29px, 4.3vw, 49px); line-height: 1.08;
  margin: 0 0 18px; letter-spacing: -1.1px; font-weight: 800;
}
.bonz-acc { color: var(--acc-2) }
.bonz-hero__sub {
  color: var(--txt-d); font-size: 16px; margin: 0 0 14px; line-height: 1.66;
}

/* product-hub quick actions */
.bonz-hub {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin: 22px 0 24px;
}
.bonz-hub__a {
  display: flex; flex-direction: column; gap: 3px;
  padding: 13px 15px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  color: var(--txt);
  transition: border-color .18s, transform .15s, background .18s;
}
.bonz-hub__a:hover { border-color: var(--acc); transform: translateY(-2px); text-decoration: none; background: var(--bg-3) }
.bonz-hub__k { font-weight: 700; font-size: 14px; color: var(--acc-2) }
.bonz-hub__v { font-size: 12px; color: var(--txt-d); line-height: 1.45 }

.bonz-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin: 6px 0 26px }
.bonz-hero__pic { margin: 0 }
.bonz-hero__pic-svg {
  display: block; width: 100%; height: auto;
  border-radius: var(--r); border: 1px solid var(--line);
  background:
    radial-gradient(430px 330px at 30% 28%, rgba(168, 85, 247, .28), transparent 60%),
    radial-gradient(360px 290px at 76% 80%, rgba(182, 242, 74, .16), transparent 65%),
    linear-gradient(135deg, #1a0f24 0%, #28163a 100%);
  aspect-ratio: 16 / 11;
  box-shadow: 0 24px 64px -22px rgba(168, 85, 247, .5);
}
.bonz-hero__pic figcaption {
  margin-top: 12px; font-size: 12px; color: var(--txt-dd);
  font-style: italic; text-align: right;
}

/* KPI inline блок */
.bonz-kpi {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 18px 0 0; border-top: 1px solid var(--line);
}
.bonz-kpi__item { display: flex; flex-direction: column; gap: 2px }
.bonz-kpi__num {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 25px; font-weight: 800;
  color: var(--acc-2); letter-spacing: -.6px;
}
.bonz-kpi__lbl { font-size: 11px; color: var(--txt-d); text-transform: uppercase; letter-spacing: 1.1px }

/* ===== SECTIONS GENERAL ===== */
.bonz-sec, .bonz-hero, .bonz-welcome, .bonz-tour, .bonz-poker, .bonz-final {
  max-width: 1240px; margin: 0 auto;
  padding: 56px 22px;
}
.bonz-hero, .bonz-welcome { padding-top: 34px }
.bonz-ovrline {
  display: inline-block;
  font-size: 11px; letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--acc); font-weight: 700;
  margin: 0 0 10px;
}
h2 {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-size: clamp(23px, 3.1vw, 35px); line-height: 1.2;
  margin: 0 0 16px; letter-spacing: -.6px; font-weight: 800;
}
h3 {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-size: clamp(17px, 2vw, 21px); line-height: 1.34;
  margin: 26px 0 10px; color: var(--acc-2); font-weight: 700; letter-spacing: -.2px;
}
p { margin: 0 0 14px; color: var(--txt) }
.bonz-lead { color: var(--txt-d); font-size: 16px; margin-bottom: 24px; max-width: 800px }

/* ===== WELCOME ===== */
.bonz-welcome {
  background:
    radial-gradient(740px 380px at 80% 26%, rgba(182, 242, 74, .07) 0%, transparent 70%),
    rgba(34, 19, 47, .55);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin: 30px auto;
}
.bonz-welcome__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin: 22px 0 24px;
}
.bonz-wbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .15s;
}
.bonz-wbox:hover { border-color: var(--acc); transform: translateY(-2px) }
.bonz-wbox::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, .09), transparent 60%);
  pointer-events: none;
}
.bonz-wbox__step {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 11px; color: var(--acc-2); font-weight: 800;
  letter-spacing: 2px; margin-bottom: 8px; text-transform: uppercase;
}
.bonz-wbox__pct {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 30px; font-weight: 800; line-height: 1;
  color: var(--acc); letter-spacing: -.8px;
  margin-bottom: 8px;
}
.bonz-wbox__title { font-weight: 700; font-size: 15px; margin-bottom: 6px }
.bonz-wbox__sub { font-size: 13px; color: var(--txt-d); line-height: 1.52 }

/* ===== THREE STEPS ===== */
.bonz-steps3__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 22px;
}
.bonz-sbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  position: relative;
}
.bonz-sbox__num {
  font-family: "Pacifico", cursive;
  position: absolute; top: 12px; right: 22px;
  font-size: 50px; line-height: 1;
  color: var(--bg-3);
}
.bonz-sbox__head {
  font-size: 18px; font-weight: 700; margin-bottom: 12px;
  color: var(--acc-2);
}
.bonz-sbox p { color: var(--txt-d); font-size: 14px; margin: 0 }

/* ===== SLOT GRID ===== */
.bonz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px; margin: 24px 0;
}
.bonz-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .15s, border-color .2s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.bonz-card:hover {
  transform: translateY(-3px);
  border-color: var(--acc);
  box-shadow: 0 18px 36px -14px rgba(168, 85, 247, .5);
}
.bonz-card__cover {
  width: 100%; aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-weight: 800; font-size: 21px; color: rgba(243, 232, 245, .94);
  text-align: center; padding: 14px;
  letter-spacing: -.3px; line-height: 1.15;
  position: relative; overflow: hidden;
}
.bonz-card__cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
}
.bonz-cv-1 { background: linear-gradient(135deg, #3a0f5a 0%, #a855f7 100%) }
.bonz-cv-2 { background: linear-gradient(135deg, #2a3a08 0%, #b6f24a 100%); color: #16210a }
.bonz-cv-3 { background: linear-gradient(135deg, #1a0a3a 0%, #7c4dff 100%) }
.bonz-cv-4 { background: linear-gradient(135deg, #3a0a2a 0%, #ff5da2 100%) }
.bonz-cv-5 { background: linear-gradient(135deg, #2a1a08 0%, #f0a040 100%); color: #1a1006 }
.bonz-cv-6 { background: linear-gradient(135deg, #082a3a 0%, #4dd6ff 100%) }
.bonz-cv-7 { background: linear-gradient(135deg, #2a3a08 0%, #97cf2e 100%); color: #16210a }
.bonz-cv-8 { background: linear-gradient(135deg, #3a0f5a 0%, #cf9bff 100%) }
.bonz-cv-9 { background: linear-gradient(135deg, #08283a 0%, #3ee6a0 100%) }
.bonz-cv-10 { background: linear-gradient(135deg, #3a1a08 0%, #b6f24a 100%); color: #16210a }
.bonz-cv-11 { background: linear-gradient(135deg, #1a0a3a 0%, #ff5da2 100%) }
.bonz-cv-12 { background: linear-gradient(135deg, #2a081a 0%, #a855f7 100%) }

.bonz-card h3 { font-size: 15px; margin: 12px 14px 4px; color: var(--txt); font-weight: 700 }
.bonz-card p { font-size: 12px; color: var(--txt-d); margin: 0 14px 12px; line-height: 1.4 }
.bonz-card__btn {
  display: block; padding: 10px;
  margin: auto 12px 12px;
  background: var(--bg-3); color: var(--txt);
  text-align: center; border-radius: 7px; font-size: 13px; font-weight: 700;
  border: 1px solid var(--line); transition: all .15s;
}
.bonz-card__btn:hover { background: var(--acc); border-color: var(--acc); color: #fff; text-decoration: none }

.bonz-prov { margin: 22px 0 0 }
.bonz-prov__title { font-size: 12px; color: var(--acc); margin-bottom: 10px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700 }
.bonz-prov__list { display: flex; flex-wrap: wrap; gap: 8px }
.bonz-prov__list span {
  padding: 6px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 12px; color: var(--txt-d);
}

/* ===== POKER ROOM ===== */
.bonz-poker {
  background:
    radial-gradient(680px 360px at 18% 30%, rgba(182, 242, 74, .06) 0%, transparent 70%),
    rgba(34, 19, 47, .5);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin: 30px auto;
}
.bonz-poker__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 22px;
}
.bonz-pkbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 22px;
  transition: border-color .2s;
}
.bonz-pkbox:hover { border-color: var(--acc-2) }
.bonz-pkbox__h {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-weight: 800; font-size: 17px; margin-bottom: 10px; color: var(--acc-2);
}
.bonz-pkbox p { color: var(--txt-d); font-size: 14px; margin: 0; line-height: 1.6 }
.bonz-poker__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px }
.bonz-poker__tags span {
  padding: 6px 12px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 5px;
  font-size: 12px; color: var(--txt);
}

/* ===== LOYALTY ===== */
.bonz-loy__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin-top: 22px;
}
.bonz-lbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  transition: border-color .2s;
}
.bonz-lbox:hover { border-color: var(--acc) }
.bonz-lbox__h { font-weight: 700; font-size: 17px; margin-bottom: 10px; color: var(--acc) }
.bonz-lbox p { color: var(--txt-d); font-size: 14px; margin: 0; line-height: 1.6 }

/* VIP-лестница */
.bonz-ladder {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 6px; margin-top: 14px;
}
.bonz-ladder__step {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 8px;
  text-align: center;
  position: relative;
}
.bonz-ladder__step:nth-child(1) { transform: translateY(0) }
.bonz-ladder__step:nth-child(2) { transform: translateY(-6px) }
.bonz-ladder__step:nth-child(3) { transform: translateY(-12px) }
.bonz-ladder__step:nth-child(4) { transform: translateY(-18px); border-color: var(--acc) }
.bonz-ladder__step:nth-child(5) { transform: translateY(-24px); border-color: var(--acc) }
.bonz-ladder__step:nth-child(6) { transform: translateY(-30px); border-color: var(--acc-2); background: linear-gradient(135deg, var(--bg-2), rgba(182, 242, 74, .1)) }
.bonz-ladder__name {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 12px; font-weight: 800; color: var(--txt);
  display: block; line-height: 1; margin-bottom: 5px;
}
.bonz-ladder__cb { font-size: 11px; color: var(--txt-d) }
.bonz-ladder__step:nth-child(6) .bonz-ladder__name { color: var(--acc-2) }

/* ===== TOUR ===== */
.bonz-tour {
  background:
    radial-gradient(660px 360px at 50% 50%, rgba(168, 85, 247, .14) 0%, transparent 70%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin: 30px auto;
  text-align: center;
}
.bonz-tour .bonz-lead { margin-left: auto; margin-right: auto }
.bonz-tour__btns { margin: 22px 0 28px }
.bonz-tour__kpi {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 22px;
}
.bonz-tour__kpi > div {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-align: center;
}
.bonz-tour__kpi span {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 24px; font-weight: 800; color: var(--acc-2);
  margin-bottom: 4px; letter-spacing: -.3px;
}
.bonz-tk-h { font-size: 14px; font-weight: 700; color: var(--txt); font-style: normal }
.bonz-tk-s { font-size: 12px; color: var(--txt-d); font-style: normal; line-height: 1.4 }

/* ===== LIVE GALLERY ===== */
.bonz-live__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px; margin-top: 22px;
}
.bonz-lvbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  transition: transform .15s, border-color .2s, box-shadow .25s;
}
.bonz-lvbox:hover {
  transform: translateY(-3px);
  border-color: var(--hot);
  box-shadow: 0 18px 36px -14px rgba(255, 93, 162, .45);
}
.bonz-lvbox__cover {
  width: 100%; aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-weight: 800; font-size: 18px; color: rgba(243, 232, 245, .95);
  padding: 12px; text-align: center; letter-spacing: -.2px;
  position: relative; overflow: hidden;
}
.bonz-lv-1 { background: linear-gradient(135deg, #2a081a 0%, #ff5da2 100%) }
.bonz-lv-2 { background: linear-gradient(135deg, #1a0a3a 0%, #a855f7 100%) }
.bonz-lv-3 { background: linear-gradient(135deg, #2a3a08 0%, #b6f24a 100%); color: #16210a }
.bonz-lv-4 { background: linear-gradient(135deg, #082a3a 0%, #4dd6ff 100%) }
.bonz-lv-5 { background: linear-gradient(135deg, #3a1a08 0%, #f0a040 100%); color: #1a1006 }
.bonz-lv-6 { background: linear-gradient(135deg, #3a0f5a 0%, #cf9bff 100%) }

.bonz-lvbox__b { padding: 14px 16px 16px; position: relative }
.bonz-lvbox__t { font-weight: 700; font-size: 16px; margin-bottom: 4px }
.bonz-lvbox__s { font-size: 12px; color: var(--txt-d); margin-bottom: 10px }
.bonz-lvbox__m { font-size: 13px; color: var(--acc-2); font-weight: 600; margin-bottom: 4px }
.bonz-lvbox__p { font-size: 12px; color: var(--txt-dd) }
.bonz-lvbox__live {
  position: absolute; top: 12px; right: 16px;
  background: var(--hot); color: #fff;
  padding: 3px 10px; border-radius: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
}

/* ===== BRAND OVERVIEW ===== */
.bonz-brand h3 {
  border-left: 3px solid var(--acc-2);
  padding-left: 14px; margin-top: 30px;
}
.bonz-brand p { color: var(--txt); line-height: 1.72 }
.bonz-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
}
.bonz-bdg {
  padding: 7px 13px;
  background: var(--bg-2);
  border: 1px solid var(--acc);
  border-radius: 5px;
  font-size: 12px; color: var(--txt);
  letter-spacing: .4px;
}

/* ===== AUTHOR NOTE ===== */
.bonz-author {
  background:
    radial-gradient(620px 320px at 78% 30%, rgba(182, 242, 74, .05) 0%, transparent 70%),
    rgba(34, 19, 47, .42);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin: 30px auto;
}
.bonz-author p { color: var(--txt-d); line-height: 1.72 }

/* ===== REVIEWS ===== */
.bonz-rev__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 22px;
}
.bonz-rbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.bonz-rbox__stars { color: var(--acc-2); font-size: 16px; letter-spacing: 4px }
.bonz-rbox__stars--four .bonz-star-off { color: var(--line-2) }
.bonz-rbox__q { font-size: 14px; line-height: 1.62; color: var(--txt); margin: 0 }
.bonz-rbox__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--txt-d);
  border-top: 1px solid var(--line); padding-top: 14px;
}
.bonz-rbox__a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--acc), var(--acc-2));
  border-radius: 50%; color: #1a0c28; font-weight: 800; font-size: 14px;
  flex: none;
}

/* ===== PAYMENTS ===== */
.bonz-pay__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  margin: 22px 0 22px;
}
.bonz-pbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  padding: 18px 14px;
  text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.bonz-pbox__n { font-size: 15px; color: var(--txt); font-weight: 700 }
.bonz-pbox__d { font-size: 11px; color: var(--txt-d); text-transform: uppercase; letter-spacing: 1px }

.bonz-pay__times {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 8px;
}
.bonz-pay__times > div {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.bonz-pt-n {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 16px; color: var(--acc-2); font-weight: 800;
}
.bonz-pt-s { font-size: 12px; color: var(--txt-d) }

/* ===== FINAL CTA ===== */
.bonz-final {
  text-align: center;
  background:
    radial-gradient(640px 320px at 50% 50%, rgba(168, 85, 247, .18) 0%, transparent 70%),
    var(--bg-2);
  border-radius: var(--r);
  margin: 30px auto;
  border: 1px solid var(--line);
}
.bonz-final h2 { margin-bottom: 10px }
.bonz-final p { color: var(--txt-d); margin-bottom: 24px }

/* ===== FAQ ===== */
.bonz-faq h2 { margin-bottom: 22px }
.bonz-faq details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  padding: 16px 20px;
  margin: 0 0 10px;
  transition: border-color .2s;
}
.bonz-faq details[open] { border-color: var(--acc) }
.bonz-faq summary {
  cursor: pointer; font-weight: 700; list-style: none;
  position: relative; padding-right: 32px;
  display: flex; align-items: center; min-height: 24px;
}
.bonz-faq summary::-webkit-details-marker { display: none }
.bonz-faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px;
  border: 1px solid var(--line); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--acc-2); font-size: 16px;
  transition: transform .25s;
}
.bonz-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); border-color: var(--acc) }
.bonz-faq details p { margin: 12px 0 0; color: var(--txt-d); font-size: 15px; line-height: 1.66 }

/* ===== AGE GATE ===== */
.bonz-age {
  max-width: 1240px; margin: 0 auto; padding: 8px 22px 40px;
}
.bonz-age__box {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(34, 19, 47, .5);
  border: 1px solid var(--line);
  border-left: 3px solid var(--acc-2);
  border-radius: var(--r);
  padding: 20px 24px;
}
.bonz-age__mark {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 22px; font-weight: 800; color: var(--acc-2);
  flex: none; line-height: 1.2;
}
.bonz-age p { margin: 0; font-size: 13px; color: var(--txt-d); line-height: 1.62 }

/* ===== FOOTER ===== */
.bonz-foot {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  background: rgba(21, 10, 28, .62);
}
.bonz-foot__top {
  max-width: 1240px; margin: 0 auto;
  padding: 42px 22px 26px;
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 36px;
}
.bonz-foot__brand { font-size: 14px; color: var(--txt-d); line-height: 1.65 }
.bonz-foot__logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.bonz-foot__logo span { display: flex; flex-direction: column; line-height: 1.1 }
.bonz-foot__logo .bonz-strong { color: var(--txt); font-size: 16px; font-weight: 800; margin-bottom: 2px }
.bonz-foot__legal { font-size: 12px; color: var(--txt-dd); margin: 0; line-height: 1.65 }
.bonz-foot__legal .bonz-strong { color: var(--acc-2) }
.bonz-foot__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.bonz-foot__col h4 {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 12px; color: var(--acc); font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.6px;
  margin: 0 0 12px;
}
.bonz-foot__col ul { list-style: none; padding: 0; margin: 0 }
.bonz-foot__col li {
  font-size: 13px; color: var(--txt-d);
  padding: 4px 0; cursor: default;
  transition: color .15s;
}
.bonz-foot__col li:hover { color: var(--txt) }
.bonz-foot__bottom {
  border-top: 1px solid var(--line);
  padding: 16px 22px;
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: var(--txt-dd);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bonz-welcome__grid { grid-template-columns: repeat(2, 1fr) }
  .bonz-poker__grid { grid-template-columns: 1fr }
  .bonz-pay__grid { grid-template-columns: repeat(3, 1fr) }
  .bonz-tour__kpi { grid-template-columns: repeat(2, 1fr) }
  .bonz-rev__grid { grid-template-columns: 1fr }
  .bonz-foot__top { grid-template-columns: 1fr }
  .bonz-metr { grid-template-columns: repeat(3, 1fr) }
  .bonz-metr__cell:nth-child(4), .bonz-metr__cell:nth-child(5) { border-top: 1px solid var(--line); padding-top: 8px }
  .bonz-ladder { grid-template-columns: repeat(3, 1fr) }
  .bonz-ladder__step { transform: none !important }
}

@media (max-width: 880px) {
  .bonz-hero { grid-template-columns: 1fr; gap: 24px; padding-top: 30px }
  .bonz-hero__pic { order: -1 }
  .bonz-nav { display: none }
  .bonz-bar { padding: 11px 14px }
  .bonz-sec, .bonz-hero, .bonz-welcome, .bonz-tour, .bonz-poker, .bonz-final { padding: 36px 16px }
  .bonz-welcome, .bonz-tour, .bonz-poker, .bonz-final, .bonz-author { margin: 22px 14px }
  .bonz-steps3__grid { grid-template-columns: 1fr }
  .bonz-loy__grid { grid-template-columns: 1fr }
  .bonz-foot__top { padding: 30px 16px 22px; gap: 22px }
  .bonz-foot__cols { grid-template-columns: repeat(2, 1fr); gap: 18px }
  .bonz-metr { padding: 8px 14px; grid-template-columns: repeat(2, 1fr); font-size: 12px }
  .bonz-metr__cell { padding: 4px 10px }
  .bonz-pay__times { grid-template-columns: 1fr }
  .bonz-kpi { grid-template-columns: repeat(2, 1fr) }
  .bonz-hub { grid-template-columns: 1fr }
}

@media (max-width: 480px) {
  .bonz-welcome__grid { grid-template-columns: 1fr }
  .bonz-grid { grid-template-columns: repeat(2, 1fr); gap: 10px }
  .bonz-live__grid { grid-template-columns: 1fr }
  .bonz-card h3 { font-size: 13px }
  .bonz-card p { font-size: 11px }
  .bonz-card__cover { font-size: 16px }
  .bonz-hero__btns { flex-direction: column; align-items: stretch }
  .bonz-cta--big { width: 100% }
  .bonz-pay__grid { grid-template-columns: repeat(2, 1fr) }
  .bonz-tour__kpi { grid-template-columns: 1fr }
  .bonz-foot__cols { grid-template-columns: 1fr }
  .bonz-ladder { grid-template-columns: repeat(2, 1fr) }
}
