@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');
:root {
  --bg-main: #0f0e1a;
  --bg-card: #1a192b;
  --accent: #c9a84c;
  --accent-2: #6b5ce7;
  --text-main: #e8e6f0;
  --text-muted: #8b86a3;
  --border: rgba(201, 168, 76, 0.15);

  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --wrap: 860px;
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --brass-line: 1px solid rgba(201, 168, 76, 0.35);

  --step-1: clamp(2.4rem, 6vw, 3.6rem);
  --step-2: clamp(1.7rem, 3.6vw, 2.4rem);
  --step-3: clamp(1.3rem, 2.4vw, 1.6rem);

  --gap: clamp(1.4rem, 3vw, 2.4rem);
  --sect-y: clamp(3.4rem, 8vw, 6rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  color: var(--text-main);
}
h1 { font-size: var(--step-1); font-weight: 800; }
h2 { font-size: var(--step-2); }
h3 { font-size: var(--step-3); }

p { margin: 0 0 1.1rem; }
a { color: var(--accent); text-decoration: none; transition: color .18s ease; }
a:hover { color: #e2c876; }
strong { color: #f2eecf; font-weight: 600; }
img { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============ CONTAINER (owns page width) ============ */
.xb-container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 5vw, 2rem);
}

/* narrow centred column archetype */
.xb-section { padding-block: var(--sect-y); }
.xb-section--alt { background: rgba(26, 25, 43, 0.5); }

.xb-eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.xb-eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* ============ ICONS ============ */
.xb-icon {
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

/* ============ BUTTONS ============ */
.xb-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .01em;
  padding: .82rem 1.5rem;
  border-radius: 999px;
  border: var(--brass-line);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background .2s ease;
  text-align: center;
  min-width: 0;
}
.xb-btn--primary {
  background: var(--accent);
  color: #14121f;
  border-color: var(--accent);
  box-shadow: 0 8px 26px -10px rgba(201, 168, 76, 0.6);
}
.xb-btn--primary:hover {
  color: #14121f;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(201, 168, 76, 0.7);
}
.xb-btn--ghost {
  background: transparent;
  color: var(--text-main);
}
.xb-btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.xb-btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ============ HEADER ============ */
.xb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 14, 26, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.xb-header__inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 68px;
}
.xb-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-inline-end: auto;
}
.xb-logo__img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.xb-nav {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2vw, 1.6rem);
  flex-wrap: wrap;
}
.xb-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-muted);
  letter-spacing: .01em;
  padding: .3rem 0;
  position: relative;
  white-space: nowrap;
}
.xb-nav a:hover, .xb-nav a[aria-current="page"] { color: var(--text-main); }
.xb-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .22s ease;
}
.xb-nav a:hover::after, .xb-nav a[aria-current="page"]::after { width: 100%; }
.xb-header__cta { flex-shrink: 0; }

.xb-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}
.xb-burger span {
  display: block;
  height: 2px; width: 100%;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.xb-header.is-open .xb-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.xb-header.is-open .xb-burger span:nth-child(2) { opacity: 0; }
.xb-header.is-open .xb-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO — stacked ============ */
.xb-hero { padding-block: clamp(3.2rem, 8vw, 6rem) clamp(2.8rem, 6vw, 4.5rem); position: relative; }
.xb-hero__inner { display: flex; flex-direction: column; }
.xb-hero__text { max-width: 42rem; }
.xb-hero h1 { margin-bottom: .5em; }
.xb-hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}
.xb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: clamp(2.4rem, 5vw, 3.4rem);
}
.xb-hero__visual {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--brass-line);
  background: linear-gradient(135deg, #221f3a, #14121f 60%, #0d0b17);
  position: relative;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.7);
}
.xb-hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 80% 0%, rgba(107,92,231,.28), transparent 60%);
  pointer-events: none;
}
.xb-hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.xb-hero__visual:not(:has(img)) { aspect-ratio: 3 / 2; }

/* ============ STATS-BAR ============ */
.xb-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: 1px;
  background: var(--border);
  border: var(--brass-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.xb-stat {
  background: var(--bg-card);
  padding: 1.5rem 1.3rem;
  min-width: 0;
}
.xb-stat__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: .35rem;
}
.xb-stat__label {
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ============ OVERVIEW ============ */
.xb-overview p { color: #d7d3e6; }
.xb-overview p:last-child { margin-bottom: 0; }

/* ============ FEATURE-CARDS / CARDS-GRID ============ */
.xb-features, .xb-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: var(--gap);
}
.xb-card {
  background:
    linear-gradient(160deg, rgba(107,92,231,.12), transparent 42%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  min-width: 0;
  transition: transform .2s ease, border-color .2s ease;
}
.xb-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.4); }
.xb-card__ico {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,168,76,.12);
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.xb-card__ico .xb-icon { width: 1.6em; height: 1.6em; }
.xb-card h3 { margin-bottom: .5rem; }
.xb-card p { color: var(--text-muted); margin-bottom: 0; font-size: .96rem; }

/* ============ DATA-TABLE ============ */
.xb-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}
.xb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  min-width: 460px;
}
.xb-table th, .xb-table td {
  padding: .9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.xb-table th {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,168,76,.05);
  white-space: nowrap;
}
.xb-table tr:last-child td, .xb-table tbody tr:last-child td { border-bottom: none; }
.xb-table tbody tr:hover td, .xb-table tbody tr:hover td { background: rgba(107,92,231,.06); }

/* ============ TWO-COLS + CONTENT-PANEL ============ */
.xb-twocols {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: var(--gap);
  align-items: start;
}
.xb-twocols > * { min-width: 0; }
.xb-panel {
  background:
    linear-gradient(180deg, rgba(107,92,231,.1), transparent 40%),
    var(--bg-card);
  border: var(--brass-line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.xb-panel__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}
.xb-facts { margin: 0; }
.xb-facts__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px dashed var(--border);
}
.xb-facts__row:last-child { border-bottom: none; padding-bottom: 0; }
.xb-facts dt, .xb-facts__label { color: var(--text-muted); font-size: .9rem; }
.xb-facts dd, .xb-facts__val {
  margin: 0;
  font-weight: 600;
  color: var(--text-main);
  text-align: right;
  overflow-wrap: anywhere;
}
.xb-checklist { list-style: none; margin: 0; padding: 0; }
.xb-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .55rem 0;
  font-size: .95rem;
}
.xb-checklist .xb-icon { color: var(--accent); margin-top: .12rem; }
.xb-score {
  text-align: center;
  padding: .5rem 0;
}
.xb-score__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}
.xb-score__stars { display: inline-flex; gap: .2rem; color: var(--accent); margin: .5rem 0; }
.xb-score__label { color: var(--text-muted); font-size: .85rem; }
.xb-minitiles {
  display: grid;
  grid-template-columns:repeat(auto-fit,minmax(min(200px,100%),1fr));
  gap: .8rem;
}
.xb-minitile {
  background: rgba(15,14,26,.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .9rem;
  min-width: 0;
}
.xb-minitile__num { font-family: var(--font-head); font-weight: 800; color: var(--accent); font-size: 1.3rem; }
.xb-minitile__label { font-size: .74rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }

/* ============ NUMBERED-LIST ============ */
.xb-steps { list-style: none; counter-reset: step; margin: 0; padding: 0; }
.xb-steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 1.6rem 3.6rem;
  min-height: 2.6rem;
}
.xb-steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.3rem; top: 2.9rem; bottom: .4rem;
  width: 1px;
  background: var(--border);
}
.xb-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  width: 2.6rem; height: 2.6rem;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  color: var(--accent);
  background: var(--bg-card);
  border: var(--brass-line);
  border-radius: 50%;
}
.xb-steps h3 { margin-bottom: .3rem; }
.xb-steps p { color: var(--text-muted); margin-bottom: 0; }

/* ============ CATEGORIES-BAR ============ */
.xb-cats { display: flex; flex-wrap: wrap; gap: .6rem; }
.xb-cats a, .xb-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 500;
}
.xb-cats a:hover { border-color: var(--accent); color: var(--text-main); }

/* ============ PAGE-HEADER + BREADCRUMB ============ */
.xb-page-header {
  padding-block: clamp(2.6rem, 6vw, 4rem) clamp(1.6rem, 3vw, 2.2rem);
  border-bottom: 1px solid var(--border);
}
.xb-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  list-style: none;
  padding: 0;
}
.xb-breadcrumb li { display: inline-flex; align-items: center; gap: .5rem; }
.xb-breadcrumb li:not(:last-child)::after { content: '/'; color: var(--border); }
.xb-breadcrumb a { color: var(--text-muted); }
.xb-breadcrumb a:hover { color: var(--accent); }
.xb-page-header p { color: var(--text-muted); max-width: 46rem; margin-bottom: 0; }

/* ============ LEGAL-BODY ============ */
.xb-legal { counter-reset: sec; }
.xb-legal h2 {
  counter-increment: sec;
  font-size: 1.3rem;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.xb-legal h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.xb-legal h2::before {
  content: counter(sec) '. ';
  color: var(--accent);
  font-family: var(--font-head);
}
.xb-legal p, .xb-legal li { color: #cdc9dc; }
.xb-legal ul, .xb-legal ol { padding-left: 1.3rem; }
.xb-legal li { margin-bottom: .5rem; }

/* ============ FAQ ============ */
.xb-faq details { border-bottom: 1px solid var(--border); }
.xb-faq summary {
  cursor: pointer;
  padding: 1.1rem 2rem 1.1rem 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
}
.xb-faq summary::-webkit-details-marker { display: none; }
.xb-faq summary::before {
  content: '+';
  position: absolute;
  right: .2rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform .2s ease;
}
.xb-faq details[open] summary::before { content: '−'; }
.xb-faq details > :not(summary) { padding: 0 0 1.2rem; color: var(--text-muted); }
.xb-faq details > :not(summary):last-child { margin-bottom: 0; }

/* ============ CTA-BLOCK ============ */
.xb-cta {
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(107,92,231,.35), transparent 55%),
    linear-gradient(135deg, #201d38, #14121f);
  border: var(--brass-line);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
}
.xb-cta h2 { margin-bottom: .5em; }
.xb-cta p { color: var(--text-muted); max-width: 40rem; margin-inline: auto; margin-bottom: 1.7rem; }
.xb-cta .xb-btn { margin-inline: auto; }

/* ============ TOC ============ */
.xb-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
}
.xb-toc__title {
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}
.xb-toc ol { list-style: none; counter-reset: toc; margin: 0; padding: 0; }
.xb-toc li { counter-increment: toc; padding: .35rem 0; }
.xb-toc a { color: var(--text-muted); display: inline-flex; gap: .6rem; }
.xb-toc a::before { content: counter(toc, decimal-leading-zero); color: var(--accent); font-family: var(--font-head); }
.xb-toc a:hover { color: var(--text-main); }

/* ============ PAYMENTS-TABLE ============ */
.xb-pay .xb-icon { color: var(--accent); }
.xb-pay td:first-child { display: flex; align-items: center; gap: .6rem; font-weight: 600; }

/* ============ RTP-GRID ============ */
.xb-rtp {
  display: grid;
  gap: clamp(.6rem, 1.5vw, 1rem);
  justify-content: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) { .xb-rtp { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 960px) { .xb-rtp { grid-template-columns: repeat(4, minmax(0, 240px)); } }
.xb-rtp-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.xb-rtp-item__thumb {
  aspect-ratio: 1 / 1;
  position: relative;
  background: linear-gradient(135deg, #262247, #14121f);
}
.xb-rtp-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.xb-rtp-item__name { padding: .6rem .7rem; font-size: .85rem; font-weight: 600; }
.xb-rtp-tooltip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  opacity: 0;
  transition: opacity .2s ease;
  background: linear-gradient(to top, rgba(15,14,26,.94), transparent);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  padding: 1.4rem .7rem .55rem;
}
.xb-rtp-item:hover .xb-rtp-tooltip { opacity: 1; }

/* ============ STICKY-NAV (mobile) ============ */
.xb-sticky-nav { display: none; }

/* ============ CHAT-WIDGET ============ */
.xb-chat-btn {
  position: fixed;
  right: 1.2rem; bottom: 1.2rem;
  z-index: 60;
}

/* ============ FOOTER ============ */
.xb-footer {
  background: #0b0a14;
  border-top: 1px solid var(--border);
  padding-block: clamp(2.8rem, 6vw, 4rem) 2rem;
  margin-top: clamp(3rem, 7vw, 5rem);
}
.xb-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--gap);
}
.xb-footer__grid > * { min-width: 0; }
.xb-footer__brand p { color: var(--text-muted); font-size: .92rem; margin-top: 1rem; }
.xb-footer__logo img { height: 36px; width: auto; }
.xb-footer__col h3 {
  font-family: var(--font-head);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.xb-footer__col ul { list-style: none; margin: 0; padding: 0; }
.xb-footer__col li { margin-bottom: .6rem; }
.xb-footer__col a { color: var(--text-muted); font-size: .93rem; }
.xb-footer__col a:hover { color: var(--text-main); }
.xb-footer__disclaimer {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.65;
}
.xb-footer__age {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8rem;
  margin-right: .7rem;
  vertical-align: middle;
  flex-shrink: 0;
}
.xb-footer__copy {
  margin-top: 1.4rem;
  color: var(--text-muted);
  font-size: .82rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .xb-nav { display: none; }
  .xb-burger { display: flex; }
  .xb-header__cta { display: none; }
  .xb-header.is-open .xb-nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border);
    padding: .6rem clamp(1.2rem, 5vw, 2rem) 1.2rem;
  }
  .xb-header.is-open .xb-nav a {
    padding: .85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .xb-header.is-open .xb-nav a::after { display: none; }
}

@media (max-width: 720px) {
  .xb-twocols { grid-template-columns: 1fr; }
  .xb-footer__grid { grid-template-columns: 1fr 1fr; }
  .xb-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .xb-footer__grid { grid-template-columns: 1fr; }
  .xb-hero__actions .xb-btn { width: 100%; justify-content: center; }
}
/* sa-responsive-net */
table th{white-space:nowrap}
