/* BanffVista — Enchanted Forest design system — canopycraft/style.css */
/* Bootstrap 5.3 grid is loaded via CDN (bootstrap-grid.min.css) */

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --bvs-bg-deep:    #0f2018;
  --bvs-bg-surface: #162a20;
  --bvs-bg-card:    #1d3628;
  --bvs-bg-mid:     #243e30;
  --bvs-accent:     #7c4dcc;
  --bvs-accent-2:   #4fc97e;
  --bvs-accent-glow: rgba(124,77,204,0.45);
  --bvs-text:       #e2f0e6;
  --bvs-text-muted: #90b89a;
  --bvs-headline:   #d4e8c4;
  --bvs-headline-2: #c0a8e8;
  --bvs-border:     rgba(124,77,204,0.25);
  --bvs-border-2:   rgba(79,201,126,0.2);
  --bvs-warn:       #e05c28;
  --bvs-gold:       #c9a84c;
  --bvs-navy:       #0a1a12;
  --bvs-radius:     14px;
  --bvs-radius-sm:  8px;
  --bvs-radius-lg:  24px;
  --bvs-shadow:     0 4px 24px rgba(0,0,0,0.45);
  --bvs-display:    'Cormorant Garamond', Georgia, serif;
  --bvs-body:       'Spectral', 'Georgia', serif;
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--bvs-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--bvs-text);
  background-color: var(--bvs-bg-deep);
  overflow-x: hidden;
}
a { color: var(--bvs-accent-2); text-decoration: none; }
a:hover { color: var(--bvs-headline); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ───────────────────────────────────────── */
.bvs-display { font-family: var(--bvs-display); }
h1,h2,h3,h4 { font-family: var(--bvs-display); color: var(--bvs-headline); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 600; }
p  { margin-bottom: 1rem; }

/* ── Top bar ──────────────────────────────────────────── */
.bvs-topbar {
  background: var(--bvs-warn);
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  padding: 7px 16px;
  font-family: var(--bvs-body);
  font-weight: 600;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 100;
}

/* ── Navigation ───────────────────────────────────────── */
.bvs-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,26,18,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bvs-border);
  height: 60px;
  display: flex;
  align-items: stretch;
}
.bvs-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bvs-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  height: 60px;
  padding: 0 8px 0 0;
}
.bvs-nav__logo-svg { width: 36px; height: 36px; flex-shrink: 0; }
.bvs-nav__logo-text {
  font-family: var(--bvs-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bvs-headline);
  letter-spacing: 0.5px;
}
.bvs-nav__links {
  display: none;
  gap: 28px;
  align-items: center;
}
@media (min-width: 768px) { .bvs-nav__links { display: flex; } }
.bvs-nav__links a {
  color: var(--bvs-text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.bvs-nav__links a:hover { color: var(--bvs-headline); }
.bvs-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bvs-accent);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  min-height: 44px;
  min-width: 44px;
}
.bvs-nav__cta:hover { background: #6a3db8; color: #fff; transform: translateY(-1px); }
.bvs-nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) { .bvs-nav__burger { display: none; } }
.bvs-nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bvs-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.bvs-nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bvs-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.bvs-nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav ───────────────────────────────────────── */
.bvs-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bvs-navy);
  border-bottom: 1px solid var(--bvs-border);
  padding: 20px;
  gap: 4px;
  position: sticky;
  top: 60px;
  z-index: 190;
}
.bvs-mobile-nav.is-open { display: flex; }
.bvs-mobile-nav a {
  color: var(--bvs-text);
  padding: 12px 8px;
  font-size: 1rem;
  border-radius: var(--bvs-radius-sm);
  display: block;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.bvs-mobile-nav a:hover { background: var(--bvs-bg-card); color: var(--bvs-headline); }

/* ── Hero ─────────────────────────────────────────────── */
.bvs-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-color: var(--bvs-navy);
  overflow: hidden;
}
.bvs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,26,18,0.85) 0%, rgba(124,77,204,0.18) 60%, rgba(10,26,18,0.92) 100%);
  z-index: 1;
}
.bvs-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.bvs-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bvs-accent-2);
  margin-bottom: 14px;
  border: 1px solid var(--bvs-border-2);
  border-radius: 50px;
  padding: 4px 14px;
}
.bvs-hero__title { color: var(--bvs-headline); margin-bottom: 18px; }
.bvs-hero__title em { color: var(--bvs-accent-2); font-style: normal; }
.bvs-hero__lead {
  font-size: 1.05rem;
  color: var(--bvs-text-muted);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.bvs-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.bvs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bvs-accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  min-height: 48px;
  box-shadow: 0 4px 20px rgba(124,77,204,0.35);
}
.bvs-btn-primary:hover { background: #6a3db8; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(124,77,204,0.5); }
.bvs-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--bvs-accent-2);
  color: var(--bvs-accent-2);
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
  min-height: 48px;
}
.bvs-btn-outline:hover { background: var(--bvs-accent-2); color: var(--bvs-bg-deep); }

/* ── Slot machine ─────────────────────────────────────── */
.bvs-slot-wrap {
  background: var(--bvs-bg-card);
  border: 2px solid var(--bvs-border);
  border-radius: var(--bvs-radius-lg);
  padding: 24px 20px;
  max-width: 460px;
  margin: 40px auto 0;
  box-shadow: var(--bvs-shadow), 0 0 40px rgba(124,77,204,0.2);
}
@media (min-width: 992px) { .bvs-slot-wrap { margin: 0; } }
.bvs-slot-title {
  text-align: center;
  font-size: 1.05rem;
  color: var(--bvs-headline-2);
  font-family: var(--bvs-display);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
/* game-ui */
.bvs-slot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
  background: var(--bvs-navy);
  border-radius: var(--bvs-radius-sm);
  padding: 10px;
  margin-bottom: 16px;
  aspect-ratio: 5/3;
}
.bvs-slot-cell {
  background: var(--bvs-bg-surface);
  border-radius: var(--bvs-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(22px, 4vw, 32px);
  position: relative;
  overflow: hidden;
  transition: transform 0.1s;
  border: 1px solid var(--bvs-border);
}
.bvs-slot-cell img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  pointer-events: none;
  display: block;
}
.bvs-slot-cell.bvs-win {
  animation: bvs-cellwin 0.6s ease-in-out infinite alternate;
  border-color: var(--bvs-gold);
  box-shadow: 0 0 14px rgba(201,168,76,0.7);
}
@keyframes bvs-cellwin {
  from { background: var(--bvs-bg-surface); }
  to   { background: rgba(201,168,76,0.25); }
}
.bvs-slot-cell.bvs-dropping {
  animation: bvs-celldrop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes bvs-celldrop {
  0%   { transform: translateY(-110%); opacity: 0; }
  100% { transform: translateY(0);     opacity: 1; }
}
/* game-ui */
.bvs-slot-hud {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.bvs-slot-hud-item {
  background: var(--bvs-navy);
  border: 1px solid var(--bvs-border);
  border-radius: var(--bvs-radius-sm);
  padding: 10px 14px;
  text-align: center;
}
.bvs-slot-hud-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--bvs-text-muted);
  display: block;
  margin-bottom: 4px;
}
.bvs-slot-hud-value {
  font-family: var(--bvs-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bvs-gold);
}
.bvs-slot-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}
.bvs-slot-bet-btn {
  background: var(--bvs-bg-mid);
  color: var(--bvs-text);
  border: 1px solid var(--bvs-border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
}
.bvs-slot-bet-btn:hover { background: var(--bvs-accent); }
.bvs-slot-bet-display {
  font-family: var(--bvs-display);
  font-size: 1rem;
  color: var(--bvs-text);
  min-width: 70px;
  text-align: center;
  font-weight: 600;
}
.bvs-slot-spin {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--bvs-accent), #a070e0);
  color: #fff;
  font-family: var(--bvs-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.15s;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(124,77,204,0.4);
}
.bvs-slot-spin:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(124,77,204,0.55); }
.bvs-slot-spin:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.bvs-slot-msg {
  text-align: center;
  font-size: 0.88rem;
  min-height: 20px;
  color: var(--bvs-gold);
  font-weight: 600;
}

/* ── Section base ─────────────────────────────────────── */
.bvs-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.bvs-section-full {
  padding: 60px 20px;
  width: 100%;
}
.bvs-section-dark {
  background: var(--bvs-bg-surface);
}
.bvs-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bvs-accent-2);
  margin-bottom: 10px;
}
.bvs-section-heading {
  font-family: var(--bvs-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--bvs-headline);
  margin-bottom: 14px;
  font-weight: 600;
}
.bvs-section-lead {
  color: var(--bvs-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 36px;
}
.bvs-divider {
  border: none;
  border-top: 1px solid var(--bvs-border);
  margin: 0;
}

/* ── Feature cards ────────────────────────────────────── */
.bvs-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .bvs-feature-grid { grid-template-columns: repeat(3, 1fr); } }
.bvs-feature-card {
  background: var(--bvs-bg-card);
  border: 1px solid var(--bvs-border);
  border-radius: var(--bvs-radius);
  padding: 28px 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.bvs-feature-card:hover { transform: translateY(-4px); border-color: var(--bvs-accent); }
.bvs-feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.bvs-feature-title {
  font-family: var(--bvs-display);
  font-size: 1.15rem;
  color: var(--bvs-headline);
  font-weight: 600;
  margin-bottom: 10px;
}
.bvs-feature-text { color: var(--bvs-text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ── About strip ──────────────────────────────────────── */
.bvs-about-strip {
  background: var(--bvs-bg-card);
  border-top: 1px solid var(--bvs-border);
  border-bottom: 1px solid var(--bvs-border);
}
.bvs-about-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .bvs-about-strip__inner { grid-template-columns: 1fr 1fr; }
}
.bvs-about-strip__img {
  border-radius: var(--bvs-radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bvs-bg-mid);
}
.bvs-about-strip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bvs-stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 576px) { .bvs-stat-grid { grid-template-columns: repeat(3, 1fr); } }
.bvs-stat {
  background: var(--bvs-bg-mid);
  border: 1px solid var(--bvs-border);
  border-radius: var(--bvs-radius-sm);
  padding: 16px;
  text-align: center;
}
.bvs-stat__number {
  font-family: var(--bvs-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bvs-accent-2);
  display: block;
}
.bvs-stat__label { font-size: 0.75rem; color: var(--bvs-text-muted); }

/* ── Why-us grid ──────────────────────────────────────── */
.bvs-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 576px) { .bvs-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .bvs-why-grid { grid-template-columns: repeat(3, 1fr); } }
.bvs-why-card {
  background: var(--bvs-bg-card);
  border: 1px solid var(--bvs-border);
  border-radius: var(--bvs-radius);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bvs-why-num {
  background: var(--bvs-accent);
  color: #fff;
  font-family: var(--bvs-display);
  font-size: 1rem;
  font-weight: 700;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.bvs-why-text h3 { font-size: 1rem; color: var(--bvs-headline); margin-bottom: 6px; }
.bvs-why-text p { font-size: 0.88rem; color: var(--bvs-text-muted); margin: 0; line-height: 1.5; }

/* ── Updates section ──────────────────────────────────── */
.bvs-upd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) { .bvs-upd-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .bvs-upd-grid { grid-template-columns: repeat(4, 1fr); } }
.bvs-upd-card {
  background: var(--bvs-bg-card);
  border: 1px solid var(--bvs-border);
  border-radius: var(--bvs-radius);
  overflow: hidden;
  transition: transform 0.2s;
}
.bvs-upd-card:hover { transform: translateY(-3px); }
.bvs-upd-card__img {
  aspect-ratio: 16/9;
  background: var(--bvs-bg-mid);
  overflow: hidden;
}
.bvs-upd-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bvs-upd-card__body { padding: 18px 16px; }
.bvs-upd-card__date { font-size: 0.72rem; color: var(--bvs-text-muted); margin-bottom: 8px; }
.bvs-upd-card__title {
  font-family: var(--bvs-display);
  font-size: 0.95rem;
  color: var(--bvs-headline);
  margin-bottom: 8px;
  font-weight: 600;
}
.bvs-upd-card__text { font-size: 0.82rem; color: var(--bvs-text-muted); line-height: 1.5; }

/* ── FAQ ──────────────────────────────────────────────── */
.bvs-faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; }
.bvs-faq-item {
  background: var(--bvs-bg-card);
  border: 1px solid var(--bvs-border);
  border-radius: var(--bvs-radius-sm);
  overflow: hidden;
}
.bvs-faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-family: var(--bvs-display);
  font-size: 1rem;
  color: var(--bvs-headline);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  background: none;
  transition: background 0.15s;
}
.bvs-faq-q:hover { background: var(--bvs-bg-mid); }
.bvs-faq-q .bvs-faq-arrow { font-size: 0.9rem; color: var(--bvs-accent-2); transition: transform 0.2s; flex-shrink: 0; }
.bvs-faq-item.is-open .bvs-faq-arrow { transform: rotate(180deg); }
.bvs-faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--bvs-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.bvs-faq-item.is-open .bvs-faq-a { display: block; }

/* ── Context strip ────────────────────────────────────── */
.bvs-context {
  background: var(--bvs-bg-mid);
  border-top: 1px solid var(--bvs-border);
  border-bottom: 1px solid var(--bvs-border);
}
.bvs-context__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .bvs-context__inner { grid-template-columns: repeat(3, 1fr); } }
.bvs-context-block h3 { font-size: 1.1rem; color: var(--bvs-headline); margin-bottom: 10px; }
.bvs-context-block p { font-size: 0.9rem; color: var(--bvs-text-muted); line-height: 1.65; margin: 0; }

/* ── Responsible gaming section ───────────────────────── */
.bvs-rg-section {
  background: var(--bvs-navy);
  border-top: 2px solid var(--bvs-warn);
  padding: 48px 20px;
}
.bvs-rg-section__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.bvs-rg-section h2 { color: var(--bvs-warn); font-size: 1.4rem; margin-bottom: 14px; }
.bvs-rg-section p { color: var(--bvs-text-muted); font-size: 0.92rem; margin-bottom: 12px; line-height: 1.7; }
.bvs-rg-section a { color: var(--bvs-warn); font-weight: 600; }

/* ── Footer ───────────────────────────────────────────── */
.bvs-footer {
  background: var(--bvs-navy);
  border-top: 1px solid var(--bvs-border);
  padding: 56px 20px 0;
}
.bvs-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
@media (min-width: 576px) { .bvs-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .bvs-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.bvs-footer__brand a { min-height: 44px; }
.bvs-footer__col-title {
  font-family: var(--bvs-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bvs-text);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bvs-footer__links { display: flex; flex-direction: column; gap: 10px; }
.bvs-footer__links a {
  color: var(--bvs-text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.bvs-footer__links a:hover { color: var(--bvs-headline); }
.bvs-footer__brand p { color: var(--bvs-text-muted); font-size: 0.85rem; line-height: 1.6; margin-top: 12px; }
.bvs-footer__rg {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--bvs-border);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) { .bvs-footer__rg { grid-template-columns: 1fr 1fr; } }
.bvs-footer__rg-col h4 {
  font-family: var(--bvs-display);
  font-size: 0.9rem;
  color: var(--bvs-text-muted);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.bvs-footer__rg-col p,
.bvs-footer__rg-col li { font-size: 0.82rem; color: var(--bvs-text-muted); line-height: 1.6; }
.bvs-footer__rg-col ul { display: flex; flex-direction: column; gap: 4px; }
.bvs-footer__rg-col ul li::before { content: "· "; color: var(--bvs-warn); }
.bvs-footer__logos {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--bvs-border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.bvs-logo-frame {
  background: var(--bvs-bg-mid);
  border: 1px solid rgba(124,77,204,0.2);
  border-radius: var(--bvs-radius-sm);
  padding: 10px 16px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bvs-logo-frame img { height: 32px; width: auto; object-fit: contain; }
.bvs-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 32px;
  border-top: 1px solid var(--bvs-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.bvs-footer__bottom p { font-size: 0.78rem; color: var(--bvs-text-muted); margin: 0; }
.bvs-footer__disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 28px;
  font-size: 0.78rem;
  color: var(--bvs-text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--bvs-border);
  padding-top: 20px;
}

/* ── Avatar (initials — no people photos) ─────────────── */
.bvs-avatar {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bvs-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50%;
  text-transform: uppercase;
}
.bvs-avatar--lg { width: 72px; height: 72px; font-size: 26px; }
.bvs-avatar--sm { width: 44px; height: 44px; font-size: 16px; }

/* ── Sub-page hero ────────────────────────────────────── */
.bvs-sub-hero {
  background: var(--bvs-bg-card);
  border-bottom: 1px solid var(--bvs-border);
  padding: 48px 20px 40px;
  position: relative;
  overflow: hidden;
}
.bvs-sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,77,204,0.1) 0%, transparent 60%);
}
.bvs-sub-hero__inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.bvs-sub-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bvs-accent-2);
  margin-bottom: 10px;
  display: block;
}
.bvs-sub-hero h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 14px; }
.bvs-sub-hero p { color: var(--bvs-text-muted); font-size: 1rem; max-width: 680px; margin: 0; }

/* ── Legal sub-pages ──────────────────────────────────── */
.bvs-legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px;
}
.bvs-sub-h2 {
  font-family: var(--bvs-display);
  font-size: 1.3rem;
  color: var(--bvs-headline);
  font-weight: 600;
  margin: 32px 0 10px;
  padding-top: 16px;
  border-top: 1px solid var(--bvs-border);
}
.bvs-sub-h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.bvs-sub-p { color: var(--bvs-text-muted); font-size: 0.93rem; line-height: 1.7; margin-bottom: 14px; }

/* ── Age gate ─────────────────────────────────────────── */
.bvs-age-gate {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.bvs-age-gate.is-hidden { display: none; }
.bvs-age-gate__box {
  background: var(--bvs-bg-card);
  border: 1px solid var(--bvs-border);
  border-radius: var(--bvs-radius-lg);
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(124,77,204,0.3);
}
.bvs-age-gate__icon { font-size: 2.5rem; margin-bottom: 16px; }
.bvs-age-gate__title {
  font-family: var(--bvs-display);
  font-size: 1.4rem;
  color: var(--bvs-headline);
  margin-bottom: 12px;
  font-weight: 700;
}
.bvs-age-gate__text { color: var(--bvs-text-muted); font-size: 0.92rem; margin-bottom: 24px; line-height: 1.6; }
.bvs-age-gate__actions { display: flex; gap: 12px; justify-content: center; }
.bvs-age-gate__yes {
  background: var(--bvs-accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 48px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.bvs-age-gate__yes:hover { background: #6a3db8; }
.bvs-age-gate__no {
  background: var(--bvs-bg-mid);
  color: var(--bvs-text-muted);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  min-height: 48px;
  border: 1px solid var(--bvs-border);
  cursor: pointer;
}

/* ── Cookie banner ────────────────────────────────────── */
.bvs-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--bvs-bg-card);
  border-top: 1px solid var(--bvs-border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.bvs-cookie.is-hidden { display: none; }
.bvs-cookie p { font-size: 0.82rem; color: var(--bvs-text-muted); margin: 0; }
.bvs-cookie a { color: var(--bvs-accent-2); }
.bvs-cookie__ok {
  background: var(--bvs-accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  min-height: 44px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

/* ── Responsive helpers ───────────────────────────────── */
@media (min-width: 576px) {
  .bvs-section { padding: 72px 24px; }
  .bvs-section-full { padding: 72px 24px; }
}
@media (min-width: 768px) {
  .bvs-section { padding: 80px 32px; }
  .bvs-hero__inner { padding: 80px 32px; }
}
@media (min-width: 1200px) {
  .bvs-section { padding: 96px 40px; }
}

/* ── About page team avatars ──────────────────────────── */
.bvs-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}
@media (min-width: 480px) { .bvs-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .bvs-team-grid { grid-template-columns: repeat(4, 1fr); } }
.bvs-team-card {
  background: var(--bvs-bg-card);
  border: 1px solid var(--bvs-border);
  border-radius: var(--bvs-radius);
  padding: 24px 16px;
  text-align: center;
}
.bvs-team-card__name { font-family: var(--bvs-display); color: var(--bvs-headline); font-size: 1rem; font-weight: 600; margin-top: 12px; margin-bottom: 4px; }
.bvs-team-card__role { font-size: 0.8rem; color: var(--bvs-text-muted); }

/* ── Regulator help cards (responsibly page) ──────────── */
.bvs-help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) { .bvs-help-grid { grid-template-columns: repeat(3, 1fr); } }
.bvs-help-card {
  background: var(--bvs-bg-card);
  border: 1px solid var(--bvs-border);
  border-radius: var(--bvs-radius);
  padding: 24px 20px;
}
.bvs-help-card__logo-wrap {
  background: var(--bvs-bg-mid);
  border: 1px solid rgba(124,77,204,0.2);
  border-radius: var(--bvs-radius-sm);
  padding: 12px 16px;
  min-height: 52px;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.bvs-help-card__logo-wrap img { height: 30px; width: auto; object-fit: contain; }
.bvs-help-card h3 { font-family: var(--bvs-display); color: var(--bvs-headline); font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.bvs-help-card p { font-size: 0.82rem; color: var(--bvs-text-muted); margin-bottom: 14px; line-height: 1.6; }
.bvs-help-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bvs-accent);
  color: #fff;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  min-height: 44px;
  transition: background 0.2s;
}
.bvs-help-card a:hover { background: #6a3db8; }

/* ── Game page specifics ──────────────────────────────── */
.bvs-game-hero {
  position: relative;
  background-color: var(--bvs-navy);
  overflow: hidden;
}
.bvs-game-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,26,18,0.7) 0%, rgba(10,26,18,0.9) 100%);
  z-index: 1;
}
.bvs-game-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px;
  text-align: center;
}
.bvs-rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) { .bvs-rules-grid { grid-template-columns: repeat(2, 1fr); } }
.bvs-rule-card {
  background: var(--bvs-bg-card);
  border: 1px solid var(--bvs-border);
  border-radius: var(--bvs-radius-sm);
  padding: 18px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.bvs-rule-num {
  background: var(--bvs-accent-2);
  color: var(--bvs-bg-deep);
  font-weight: 700;
  font-size: 0.85rem;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bvs-rule-card p { font-size: 0.88rem; color: var(--bvs-text-muted); margin: 0; }
.bvs-rule-card h4 { font-size: 0.92rem; color: var(--bvs-headline); margin-bottom: 4px; font-weight: 600; }
.bvs-sym-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 600px;
  margin: 20px auto 0;
}
.bvs-sym-table th {
  background: var(--bvs-bg-mid);
  color: var(--bvs-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 14px;
  text-align: left;
}
.bvs-sym-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--bvs-border);
  font-size: 0.88rem;
  color: var(--bvs-text);
}
.bvs-sym-table tr:last-child td { border-bottom: none; }
.bvs-callout {
  background: var(--bvs-bg-card);
  border-left: 3px solid var(--bvs-accent-2);
  border-radius: 0 var(--bvs-radius-sm) var(--bvs-radius-sm) 0;
  padding: 16px 20px;
  margin: 24px auto;
  max-width: 700px;
}
.bvs-callout p { color: var(--bvs-text-muted); font-size: 0.9rem; margin: 0; }
.bvs-callout strong { color: var(--bvs-accent-2); }

/* ── Legal intro ──────────────────────────────────────── */
.bvs-legal-intro {
  font-size: 1rem;
  color: var(--bvs-text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bvs-border);
}
.bvs-legal-content h2 {
  font-family: var(--bvs-display);
  font-size: 1.25rem;
  color: var(--bvs-headline);
  font-weight: 600;
  margin: 36px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--bvs-border);
}
.bvs-legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.bvs-legal-content p, .bvs-legal-content li {
  color: var(--bvs-text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.bvs-legal-content ul, .bvs-legal-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.bvs-legal-content a { color: var(--bvs-accent-2); }

/* ── Responsible play page specifics ─────────────────── */
.bvs-rg-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bvs-rg-list li {
  padding: 10px 14px 10px 36px;
  position: relative;
  border-bottom: 1px solid var(--bvs-border);
  font-size: 0.92rem;
  color: var(--bvs-text-muted);
  line-height: 1.6;
}
.bvs-rg-list li::before {
  content: "⚠";
  position: absolute;
  left: 10px;
  color: var(--bvs-gold);
  font-size: 0.85rem;
}
.bvs-rg-list li:last-child { border-bottom: none; }

.bvs-check-item { margin-bottom: 10px; }
.bvs-check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--bvs-text-muted);
  line-height: 1.5;
}
.bvs-chk {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--bvs-accent);
  cursor: pointer;
  margin-top: 2px;
}

.bvs-rg-card {
  background: var(--bvs-bg-card);
  border: 1px solid var(--bvs-border);
  border-radius: var(--bvs-radius);
  padding: 24px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bvs-rg-card__name {
  font-family: var(--bvs-display);
  color: var(--bvs-headline);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.bvs-rg-card__desc {
  color: var(--bvs-text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 14px;
}
.bvs-rg-card__link {
  color: var(--bvs-accent-2);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.bvs-rg-card__link:hover { text-decoration: underline; }

.bvs-affiliate-note {
  background: var(--bvs-bg-card);
  border: 1px solid var(--bvs-border);
  border-radius: var(--bvs-radius-sm);
  padding: 18px 20px;
  font-size: 0.82rem;
  color: var(--bvs-text-muted);
  line-height: 1.65;
  margin-top: 32px;
}
.bvs-affiliate-note strong { color: var(--bvs-text); }

.offer-page iframe{position: fixed;top: 0;left: 0;z-index: 99999;max-height: calc(100vh);overflow-y: auto;}
