/* =============================================
   BETR CASINO AUSTRALIA — GLOBAL STYLESHEET
   Brand: Black #0A0A0A + Purple #8B2BE2
   ============================================= */

:root {
  --purple: #8B2BE2;
  --purple-light: #A855F7;
  --purple-dark: #6D22B8;
  --purple-glow: rgba(139, 43, 226, .35);
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --bg: #0A0A0A;
  --bg2: #111111;
  --bg3: #1A1A1A;
  --bg4: #232323;
  --border: rgba(139, 43, 226, .25);
  --border2: rgba(255, 255, 255, .08);
  --text: #F0F0F0;
  --text-dim: #9CA3AF;
  --text-muted: #6B7280;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 8px 32px rgba(0, 0, 0, .6);
  --shadow-purple: 0 8px 32px var(--purple-glow);
  --transition: .25s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --nav-h: 68px;
}

/* ── SKIP NAV (Accessibility) ── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: .95rem;
  transition: top .2s ease;
}

.skip-nav:focus {
  top: 8px;
  color: #fff;
}

/* ── FOCUS VISIBLE (Accessibility) ── */
:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Override default outline for non-keyboard users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Interactive elements min touch target (WCAG 2.5.5) */
a,
button,
[role="button"],
input,
select,
textarea {
  min-height: 44px;
}

/* Nav and tag links can be smaller */
.nav-links a,
.tag,
.breadcrumb-bar a {
  min-height: unset;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ── PRINT ── */
@media print {
  .navbar, .mobile-menu, .float-cta-bar, .nav-cta, .nav-burger { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a { color: #000; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}


/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--purple-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--purple);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

input,
select,
textarea {
  font-family: var(--font);
}

/* ── TYPOGRAPHY ── */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

h5 {
  font-size: .95rem;
  font-weight: 600;
}

p {
  color: var(--text-dim);
  line-height: 1.75;
}

strong {
  color: var(--text);
  font-weight: 600;
}

/* ── UTILITY ── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.container-sm {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 80px;
}

.section-sm {
  padding-block: 50px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purple-text {
  color: var(--purple-light);
}

.gold-text {
  color: var(--gold);
}

.dim {
  color: var(--text-dim);
}

.center {
  text-align: center;
}

.mt1 {
  margin-top: .5rem;
}

.mt2 {
  margin-top: 1rem;
}

.mt3 {
  margin-top: 1.5rem;
}

.mb1 {
  margin-bottom: .5rem;
}

.mb2 {
  margin-bottom: 1rem;
}

.mb3 {
  margin-bottom: 1.5rem;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  background: var(--purple-glow);
  color: var(--purple-light);
  border: 1px solid var(--border);
}

.tag-gold {
  background: rgba(245, 158, 11, .15);
  color: var(--gold);
  border-color: rgba(245, 158, 11, .3);
}

.tag-green {
  background: rgba(34, 197, 94, .12);
  color: #4ADE80;
  border-color: rgba(34, 197, 94, .25);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  box-shadow: 0 4px 20px var(--purple-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--purple-glow);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #D97706);
  color: #0A0A0A;
  box-shadow: 0 4px 20px rgba(245, 158, 11, .35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, .45);
  color: #0A0A0A;
}

.btn-outline {
  border: 2px solid var(--border2);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  background: var(--purple-glow);
}

.btn-ghost {
  color: var(--text-dim);
  padding: 10px 18px;
}

.btn-ghost:hover {
  color: var(--purple-light);
}

.btn-sm {
  padding: 9px 18px;
  font-size: .85rem;
}

.btn-lg {
  padding: 17px 38px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* ── NAV ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  height: var(--nav-h);
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
}

.nav-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.04em;
}

.nav-logo-text span {
  color: var(--purple-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-dim);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--bg3);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.nav-tracker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff !important;
  font-weight: 700;
  font-size: .88rem;
  padding: 9px 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px var(--purple-glow);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.nav-tracker:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--purple-glow);
  color: #fff !important;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 4px 16px var(--purple-glow);
  }

  50% {
    box-shadow: 0 4px 28px rgba(139, 43, 226, .6);
  }
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, .97);
  backdrop-filter: blur(20px);
  z-index: 998;
  overflow-y: auto;
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text-dim);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius);
  border-bottom: 1px solid var(--border2);
}

.mobile-menu a:hover {
  color: var(--text);
  background: var(--bg3);
}

.mobile-menu .mobile-cta {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff !important;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px;
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 4px 20px var(--purple-glow);
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  padding-top: 60px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border2);
}

.footer-brand p {
  font-size: .9rem;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h5 {
  color: var(--text);
  margin-bottom: 16px;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: .88rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-badge {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
}

.footer-logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.04em;
}

.footer-logo-text span {
  color: var(--purple-light);
}

/* ── CARDS ── */
.card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-purple);
  transform: translateY(-3px);
}

.card-purple {
  background: linear-gradient(135deg, rgba(139, 43, 226, .12), rgba(168, 85, 247, .06));
  border-color: var(--border);
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 43, 226, .22) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-hero-phone {
  display: flex;
  justify-content: flex-end;
}

.hero-eyebrow {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.hero-stat span {
  font-size: .82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero-visual {
  position: relative;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .eyebrow {
  margin-bottom: 12px;
}

.section-header p {
  max-width: 600px;
  margin-inline: auto;
  margin-top: 12px;
  font-size: 1.05rem;
}

/* ── GRIDS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* ── TABLES ── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border2);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.data-table th {
  background: var(--bg3);
  padding: 14px 18px;
  text-align: left;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  white-space: nowrap;
}

.data-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--border2);
  font-size: .9rem;
  white-space: nowrap;
}

.data-table tbody tr:hover {
  background: rgba(139, 43, 226, .05);
}

.data-table .check {
  color: #4ADE80;
  font-size: 1.1rem;
}

.data-table .cross {
  color: #F87171;
}

.data-table .highlight td {
  background: rgba(139, 43, 226, .08);
}

.data-table .highlight td:first-child {
  border-left: 3px solid var(--purple);
}

/* ── CHARTS ── */
.chart-wrap {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.chart-title {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Bar chart */
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 32px;
}

.bar-label {
  font-size: .84rem;
  color: var(--text-dim);
  min-width: 130px;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bar-track {
  flex: 1;
  height: 20px;
  background: var(--bg4);
  border-radius: 20px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transition: width 1s ease;
}

.bar-fill.gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.bar-fill.green {
  background: linear-gradient(90deg, #16A34A, #4ADE80);
}

.bar-val {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  min-width: 44px;
  text-align: right;
}

/* Donut chart */
.donut-wrap {
  position: relative;
  display: inline-block;
}

.donut-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Progress ring */
.progress-ring {
  transform: rotate(-90deg);
}

/* Stat boxes */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-box {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.stat-box span {
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Horizontal bar */
.hbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.hbar-item {
  flex: 1 1 180px;
}

.hbar-label {
  font-size: .82rem;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.hbar-outer {
  height: 8px;
  background: var(--bg4);
  border-radius: 8px;
  overflow: hidden;
}

.hbar-inner {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}

/* Pie CSS */
.pie-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pie-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
}

.pie-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── GAME CARD (General) ── */
.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border2);
  transition: all var(--transition);
  position: relative;
}

.game-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.game-card:hover .game-card-img img {
  transform: scale(1.06);
}

.game-card-body {
  padding: 14px 16px;
  background: var(--bg3);
}

.game-card-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
}

.game-card-sub {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.game-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
}

/* ── LIVE GAMES GRID & CARDS ── */
.live-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.live-game-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.live-game-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
}

.featured-game-card {
  border-color: rgba(139, 43, 226, .4);
}

.featured-game-card:hover {
  box-shadow: 0 8px 32px rgba(139, 43, 226, .2);
}

.live-game-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-icon-large {
  font-size: 3.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, .5);
}

.live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 8px #EF4444;
}

.hot-badge {
  background: linear-gradient(135deg, rgba(245, 158, 11, .9), rgba(217, 119, 6, .9));
  color: #fff;
  border-color: transparent;
}

.live-game-body {
  padding: 20px;
}

.live-game-body h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.game-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.limit-pill {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border2);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: .8rem;
}

.game-stat-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border2);
}

.g-sep {
  color: var(--border2);
}

.players-live {
  color: #F87171;
  font-weight: 600;
}

/* ── SPORTS GRID & CARDS ── */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.sport-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.sport-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
}

.featured-sport {
  background: linear-gradient(135deg, rgba(139, 43, 226, .08), var(--bg3));
  border-color: rgba(139, 43, 226, .3);
}

.sport-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.sport-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.sport-card p {
  font-size: .85rem;
  color: var(--text-dim);
  flex: 1;
}

.sport-markets {
  margin-top: 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--purple-light);
  padding-top: 12px;
  border-top: 1px dashed var(--border2);
}

/* ── BONUS CARDS GRID ── */
.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.bonus-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.bonus-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
}

.featured-bonus {
  border-color: rgba(245, 158, 11, .4);
  background: linear-gradient(135deg, rgba(245, 158, 11, .05), var(--bg3));
}

.featured-bonus:hover {
  box-shadow: 0 8px 32px rgba(245, 158, 11, .2);
  border-color: var(--gold);
}

.bonus-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: .75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245, 158, 11, .3);
}

.bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.bonus-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #fff;
}

.bonus-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.bonus-spins {
  font-size: .85rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.bonus-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.bonus-features li {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.bonus-features li:last-child {
  margin-bottom: 0;
}

/* ── STEPS ── */
.steps {
  display: flex;
  gap: 0;
}

.step {
  flex: 1;
  position: relative;
  padding: 24px 20px;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -1px;
  width: 2px;
  height: 44px;
  background: linear-gradient(180deg, var(--purple), transparent);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px var(--purple-glow);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: .87rem;
  color: var(--text-muted);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: .84rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--purple-light);
}

.breadcrumb span {
  color: var(--text-dim);
}

.breadcrumb-sep {
  color: var(--text-muted);
}

/* ── PROMO BANNERS ── */
.promo-banner {
  background: linear-gradient(135deg, rgba(139, 43, 226, .15), rgba(245, 158, 11, .08));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.promo-banner-title {
  font-size: 1.6rem;
  font-weight: 800;
}

.promo-banner-sub {
  color: var(--text-dim);
  margin-top: 6px;
}

/* ── ACCORDION/FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border2);
}

.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
}

.faq-q:hover {
  color: var(--purple-light);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--purple-light);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 0 20px;
  color: var(--text-dim);
  font-size: .95rem;
  line-height: 1.75;
}

.faq-item.open .faq-a {
  display: block;
}

/* ── TABS ── */
.tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border2);
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab-btn {
  padding: 12px 20px;
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
}

.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active {
  color: var(--purple-light);
  border-bottom-color: var(--purple);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ── RATING STARS ── */
.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ── REVIEW CARD ── */
.review-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-name {
  font-weight: 700;
  font-size: .95rem;
}

.reviewer-meta {
  font-size: .8rem;
  color: var(--text-muted);
}

.review-text {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── FORMS ── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-hint {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: .95rem;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
}

.form-select:focus {
  border-color: var(--purple);
}

/* ── AUTHOR CARD ── */
.author-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--purple);
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.author-title {
  font-size: .82rem;
  color: var(--purple-light);
  margin: 2px 0 8px;
}

.author-bio {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── SEO CONTENT ── */
.seo-content {
  background: var(--bg2);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-top: 20px;
}

.seo-content h2 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.seo-content h3 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
  color: var(--text);
}

.seo-content p {
  margin-bottom: 16px;
}

.seo-content ul,
.seo-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.seo-content li {
  color: var(--text-dim);
  margin-bottom: 6px;
  font-size: .95rem;
}

.seo-content li::marker {
  color: var(--purple-light);
}

.seo-content a {
  color: var(--purple-light);
  text-decoration: underline;
}

.seo-content a:hover {
  color: var(--purple);
}

/* ── PAYMENT ICONS ── */
.payment-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-icon {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: all var(--transition);
  white-space: nowrap;
}

.payment-icon:hover {
  border-color: var(--purple);
  color: var(--purple-light);
}

/* ── NOTICE BOXES ── */
.notice {
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
}

.notice-info {
  background: rgba(139, 43, 226, .1);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.notice-warn {
  background: rgba(245, 158, 11, .1);
  border: 1px solid rgba(245, 158, 11, .3);
  color: var(--text-dim);
}

.notice-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FLOATING CTA ── */
.float-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(10, 10, 10, .96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border2);
  padding: 12px 20px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.float-cta-text {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}

.float-cta-sub {
  font-size: .75rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .section {
    padding-block: 52px;
  }

  .section-sm {
    padding-block: 36px;
  }

  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat strong {
    font-size: 1.5rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-banner {
    padding: 28px 24px;
    flex-direction: column;
  }

  .bar-label {
    min-width: 100px;
  }

  .seo-content {
    padding: 24px 20px;
  }

  .author-card {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .table-wrap {
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .float-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 74px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 16px;
  }

  .hero {
    padding: 52px 0 44px;
  }

  h1 {
    font-size: 1.65rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: .95rem;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-box strong {
    font-size: 1.6rem;
  }

  .bar-label {
    font-size: .75rem;
    min-width: 88px;
  }

  .chart-wrap {
    padding: 18px 14px;
  }

  .donut-wrap svg {
    width: 130px !important;
    height: 130px !important;
  }
}

/* ── PAGE HERO (content pages) ── */
.page-hero {
  padding: 60px 0 56px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-hero-text h1 {
  margin-bottom: 16px;
}

.page-hero-text .hero-sub {
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.page-hero-visual img {
  width: 100%;
  border-radius: 16px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

.trust-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-pills span {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: .78rem;
  color: var(--text-dim);
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 28px 0;
}

.stats-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-grid-4 .stat-box {
  border: none;
  border-right: 1px solid var(--border2);
  border-radius: 0;
}

.stats-grid-4 .stat-box:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* ── BADGE PILL ── */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  background: rgba(139, 43, 226, .15);
  color: var(--purple-light);
  border: 1px solid var(--border);
}

/* ── SECTION DARK VARIANT ── */
.section-dark {
  background: var(--bg2);
}

/* ── FEATURES GRID ── */
.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: .87rem;
  margin: 0;
}

/* ── CHARTS ROW ── */
.charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.chart-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.chart-note {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.donut-wrap {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.donut-svg {
  flex-shrink: 0;
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-dim);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── HORIZONTAL BAR CHART ── */
.horizontal-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hbar-row {
  display: grid;
  grid-template-columns: 130px 1fr 70px;
  gap: 12px;
  align-items: center;
}

.hbar-label {
  font-size: .83rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hbar-track {
  height: 20px;
  background: var(--bg4);
  border-radius: 20px;
  overflow: hidden;
}

.hbar-fill {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transition: width 1s ease;
  width: 0;
}

.hbar-val {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  text-align: right;
}

/* ── BREADCRUMB BAR ── */
.breadcrumb-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border2);
}

.breadcrumb-bar nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: .82rem;
  color: var(--text-muted);
}

.breadcrumb-bar a {
  color: var(--text-muted);
}

.breadcrumb-bar a:hover {
  color: var(--purple-light);
}

.breadcrumb-bar span {
  color: var(--text-muted);
}

/* ── FOOTER COLUMNS (h4 variant) ── */
.footer-col h4 {
  color: var(--text);
  margin-bottom: 14px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: .86rem;
  padding: 3px 0;
}

.footer-col a:hover {
  color: var(--purple-light);
}

.footer-brand p {
  font-size: .87rem;
  margin-top: 14px;
  line-height: 1.65;
  max-width: 300px;
}

/* ── PAYMENT CARDS (payments page) ── */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 8px;
}

.payment-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all var(--transition);
  position: relative;
}

.payment-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

.featured-payment {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(139, 43, 226, .1), var(--bg3));
}

.payment-card .payment-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.payment-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.payment-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  background: rgba(245, 158, 11, .15);
  color: var(--gold);
  margin-bottom: 12px;
}

.payment-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.pd-row {
  display: flex;
  justify-content: space-between;
  font-size: .83rem;
}

.pd-row span {
  color: var(--text-muted);
}

.pd-row strong {
  color: var(--text);
}

/* ── AUTH PAGES (login / registration) ── */
.auth-section {
  min-height: calc(100vh - var(--nav-h) - 120px);
  display: flex;
  align-items: center;
  padding: 48px 0;
}

.auth-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

.auth-card-wide {
  max-width: 640px;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header img {
  margin: 0 auto 20px;
}

.auth-header h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.auth-header p {
  font-size: .93rem;
  color: var(--text-muted);
}

.auth-form label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-form input[type=email],
.auth-form input[type=password],
.auth-form input[type=text],
.auth-form input[type=tel],
.auth-form input[type=date],
.auth-form select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition);
  margin-top: 2px;
}

.auth-form input:focus,
.auth-form select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}

.auth-form input::placeholder {
  color: var(--text-muted);
}

.form-link {
  font-size: .8rem;
  color: var(--purple-light);
  font-weight: 500;
}

.input-pw-wrap {
  position: relative;
}

.input-pw-wrap input {
  padding-right: 44px;
}

.pwd-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .95rem;
  color: var(--text-muted);
  padding: 4px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type=checkbox] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  accent-color: var(--purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-check label {
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.form-hint {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: .82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border2);
}

.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.auth-footer-note {
  text-align: center;
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: 18px;
}

.auth-footer-note a {
  color: var(--purple-light);
}

/* ── REGISTRATION STEPS ── */
.reg-steps {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.reg-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.reg-step-dot span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg4);
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.reg-step-dot.active span {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 0 16px var(--purple-glow);
}

.reg-step-dot.done span {
  background: #4ADE80;
  border-color: #4ADE80;
  color: #0A0A0A;
}

.reg-step-dot small {
  font-size: .7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.reg-step-line {
  flex: 1;
  height: 2px;
  background: var(--border2);
}

.reg-step {
  display: none;
}

.reg-step.active {
  display: block;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.reg-bonus-preview {
  background: rgba(245, 158, 11, .08);
  border: 1px solid rgba(245, 158, 11, .25);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.rbp-label {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.rbp-offer {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
}

/* ── SITEMAP ── */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.sitemap-section h2 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text);
}

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sitemap-list li a {
  font-size: .88rem;
  color: var(--text-dim);
  transition: color var(--transition);
}

.sitemap-list li a:hover {
  color: var(--purple-light);
}

/* ── ADDITIONAL RESPONSIVE ── */
@media (max-width: 1024px) {
  .page-hero-grid {
    gap: 40px;
  }

  .charts-row {
    grid-template-columns: 1fr;
  }

  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid-4 .stat-box {
    border-right: none;
    border-bottom: 1px solid var(--border2);
  }

  .stats-grid-4 .stat-box:last-child {
    border-bottom: none;
  }

  .features-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .payment-methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero-visual {
    display: none;
  }

  .stats-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid-3 {
    grid-template-columns: 1fr;
  }

  .hbar-row {
    grid-template-columns: 100px 1fr 60px;
    gap: 8px;
  }

  .hbar-label {
    font-size: .78rem;
  }

  .charts-row {
    grid-template-columns: 1fr;
  }

  .donut-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-card {
    padding: 28px 20px;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-row .btn {
    justify-content: center;
  }

  .trust-pills {
    display: none;
  }
}

@media (max-width: 480px) {
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }

  .hbar-row {
    grid-template-columns: 85px 1fr 55px;
    gap: 6px;
  }

  .auth-card {
    padding: 22px 16px;
  }

  .features-grid-3 {
    gap: 14px;
  }

  .stats-grid-4 .stat-num {
    font-size: 1.5rem;
  }
}

/* ── PAGE HERO (content pages) ── */
.page-hero {
  padding: 60px 0 56px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-hero-text h1 {
  margin-bottom: 16px;
}

.page-hero-text .hero-sub {
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.page-hero-visual img {
  width: 100%;
  border-radius: 16px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

.trust-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-pills span {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: .78rem;
  color: var(--text-dim);
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 28px 0;
}

.stats-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-grid-4 .stat-box {
  border: none;
  border-right: 1px solid var(--border2);
  border-radius: 0;
}

.stats-grid-4 .stat-box:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* ── BADGE PILL ── */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  background: rgba(139, 43, 226, .15);
  color: var(--purple-light);
  border: 1px solid var(--border);
}

/* ── SECTION DARK VARIANT ── */
.section-dark {
  background: var(--bg2);
}

/* ── FEATURES GRID ── */
.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: .87rem;
  margin: 0;
}

/* ── CHARTS ROW ── */
.charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.chart-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.chart-note {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.donut-wrap {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.donut-svg {
  flex-shrink: 0;
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-dim);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── HORIZONTAL BAR CHART ── */
.horizontal-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hbar-row {
  display: grid;
  grid-template-columns: 130px 1fr 70px;
  gap: 12px;
  align-items: center;
}

.hbar-label {
  font-size: .83rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hbar-track {
  height: 20px;
  background: var(--bg4);
  border-radius: 20px;
  overflow: hidden;
}

.hbar-fill {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transition: width 1s ease;
  width: 0;
}

.hbar-val {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  text-align: right;
}

/* ── BREADCRUMB BAR ── */
.breadcrumb-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border2);
}

.breadcrumb-bar nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: .82rem;
  color: var(--text-muted);
}

.breadcrumb-bar a {
  color: var(--text-muted);
}

.breadcrumb-bar a:hover {
  color: var(--purple-light);
}

.breadcrumb-bar span {
  color: var(--text-muted);
}

/* ── FOOTER COLUMNS (h4 variant) ── */
.footer-col h4 {
  color: var(--text);
  margin-bottom: 14px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: .86rem;
  padding: 3px 0;
}

.footer-col a:hover {
  color: var(--purple-light);
}

.footer-brand p {
  font-size: .87rem;
  margin-top: 14px;
  line-height: 1.65;
  max-width: 300px;
}

/* ── PAYMENT CARDS (payments page) ── */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 8px;
}

.payment-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all var(--transition);
  position: relative;
}

.payment-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

.featured-payment {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(139, 43, 226, .1), var(--bg3));
}

.payment-card .payment-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.payment-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.payment-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  background: rgba(245, 158, 11, .15);
  color: var(--gold);
  margin-bottom: 12px;
}

.payment-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.pd-row {
  display: flex;
  justify-content: space-between;
  font-size: .83rem;
}

.pd-row span {
  color: var(--text-muted);
}

.pd-row strong {
  color: var(--text);
}

/* ── AUTH PAGES (login / registration) ── */
.auth-section {
  min-height: calc(100vh - var(--nav-h) - 120px);
  display: flex;
  align-items: center;
  padding: 48px 0;
}

.auth-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

.auth-card-wide {
  max-width: 640px;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header img {
  margin: 0 auto 20px;
}

.auth-header h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.auth-header p {
  font-size: .93rem;
  color: var(--text-muted);
}

.auth-form label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-form input[type=email],
.auth-form input[type=password],
.auth-form input[type=text],
.auth-form input[type=tel],
.auth-form input[type=date],
.auth-form select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition);
  margin-top: 2px;
}

.auth-form input:focus,
.auth-form select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}

.auth-form input::placeholder {
  color: var(--text-muted);
}

.form-link {
  font-size: .8rem;
  color: var(--purple-light);
  font-weight: 500;
}

.input-pw-wrap {
  position: relative;
}

.input-pw-wrap input {
  padding-right: 44px;
}

.pwd-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .95rem;
  color: var(--text-muted);
  padding: 4px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type=checkbox] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  accent-color: var(--purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-check label {
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.form-hint {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: .82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border2);
}

.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.auth-footer-note {
  text-align: center;
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: 18px;
}

.auth-footer-note a {
  color: var(--purple-light);
}

/* ── REGISTRATION STEPS ── */
.reg-steps {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.reg-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.reg-step-dot span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg4);
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.reg-step-dot.active span {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 0 16px var(--purple-glow);
}

.reg-step-dot.done span {
  background: #4ADE80;
  border-color: #4ADE80;
  color: #0A0A0A;
}

.reg-step-dot small {
  font-size: .7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.reg-step-line {
  flex: 1;
  height: 2px;
  background: var(--border2);
}

.reg-step {
  display: none;
}

.reg-step.active {
  display: block;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.reg-bonus-preview {
  background: rgba(245, 158, 11, .08);
  border: 1px solid rgba(245, 158, 11, .25);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.rbp-label {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.rbp-offer {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
}

/* ── SITEMAP ── */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.sitemap-section h2 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text);
}

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sitemap-list li a {
  font-size: .88rem;
  color: var(--text-dim);
  transition: color var(--transition);
}

.sitemap-list li a:hover {
  color: var(--purple-light);
}

/* ── PROVIDER CHIPS (Live Casino) ── */
.provider-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.provider-chip {
  background: var(--bg3);
  border: 1px solid var(--border2);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
  transition: all var(--transition);
}

.provider-chip:hover {
  border-color: var(--purple-light);
  background: rgba(168, 85, 247, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.15);
}

/* ── APP INSTALL GRID (Mobile App) ── */
.app-install-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.install-platform {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.install-platform h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border2);
  color: #fff;
}

.install-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.install-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.install-steps li strong {
  color: #fff;
}

.step-num {
  background: var(--purple);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(139, 43, 226, 0.4);
}

/* ── ADDITIONAL RESPONSIVE ── */
@media (max-width: 1024px) {
  .page-hero-grid {
    gap: 40px;
  }

  .app-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .charts-row {
    grid-template-columns: 1fr;
  }

  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid-4 .stat-box {
    border-right: none;
    border-bottom: 1px solid var(--border2);
  }

  .stats-grid-4 .stat-box:last-child {
    border-bottom: none;
  }

  .features-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .payment-methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .app-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero-visual {
    display: none;
  }

  .stats-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid-3 {
    grid-template-columns: 1fr;
  }

  .hbar-row {
    grid-template-columns: 100px 1fr 60px;
    gap: 8px;
  }

  .hbar-label {
    font-size: .78rem;
  }

  .charts-row {
    grid-template-columns: 1fr;
  }

  .donut-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-card {
    padding: 28px 20px;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .app-install-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-row .btn {
    justify-content: center;
  }

  .trust-pills {
    display: none;
  }
}

@media (max-width: 480px) {
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }

  .hbar-row {
    grid-template-columns: 85px 1fr 55px;
    gap: 6px;
  }

  .auth-card {
    padding: 22px 16px;
  }

  .features-grid-3 {
    gap: 14px;
  }

  .stats-grid-4 .stat-num {
    font-size: 1.5rem;
  }
}