/* VancouverCanyon — cosmos/style.css — Toronto Lakeside × Space Nebula — prefix: vc- */
/* Bootstrap 5.3.3 loaded via CDN. Do NOT redefine .container .row .col-* here. */

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  /* Palette — Toronto Lakeside adapted for deep space nebula */
  --vc-bg-deep:    #080e1a;
  --vc-bg-mid:     #0f1a2e;
  --vc-bg-surface: #152038;
  --vc-bg-card:    #1a2840;
  --vc-accent:     #4ecdc4;
  --vc-accent2:    #ff6b9d;
  --vc-accent3:    #ffd93d;
  --vc-accent4:    #a78bfa;
  --vc-text:       #e8f0f7;
  --vc-text-mid:   #8fa8c4;
  --vc-text-dim:   #56728e;
  --vc-border:     rgba(78,205,196,0.18);
  --vc-border2:    rgba(167,139,250,0.15);
  --vc-warn:       #ff4f4f;
  --vc-warn-bg:    rgba(255,79,79,0.08);
  --vc-glow-teal:  0 0 18px rgba(78,205,196,0.45);
  --vc-glow-rose:  0 0 18px rgba(255,107,157,0.4);
  --vc-glow-purple:0 0 24px rgba(167,139,250,0.5);

  /* Typography */
  --vc-display: 'Exo 2', 'Rajdhani', sans-serif;
  --vc-body:    'Nunito', 'Inter', sans-serif;

  /* Layout */
  --vc-radius:  12px;
  --vc-radius-sm: 6px;
  --vc-radius-lg: 20px;
  --vc-transition: 0.2s ease;
}

/* ═══════════════════════════════════════════════════════
   RESET / BASE
═══════════════════════════════════════════════════════ */
html, body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--vc-bg-deep);
  color: var(--vc-text);
  font-family: var(--vc-body);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4, h5 {
  font-family: var(--vc-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vc-text);
}

a { color: var(--vc-accent); text-decoration: none; transition: color var(--vc-transition); }
a:hover { color: var(--vc-accent4); }

img { max-width: 100%; height: auto; display: block; }

input, button, select, textarea {
  font-family: var(--vc-body);
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════
   TOPBAR — responsible gaming strip
═══════════════════════════════════════════════════════ */
.vc-topbar {
  background: var(--vc-bg-mid);
  border-bottom: 1px solid var(--vc-border);
  padding: 7px 16px;
  text-align: center;
  font-size: 12px;
  color: var(--vc-text-mid);
  letter-spacing: 0.02em;
}
.vc-topbar a {
  color: var(--vc-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
}

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.vc-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(8,14,26,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--vc-border);
  padding: 0 16px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vc-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-height: 44px;
}
.vc-nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}
.vc-nav__logo-text {
  font-family: var(--vc-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--vc-text);
  white-space: nowrap;
}

.vc-nav__links {
  display: none;
  gap: 28px;
  list-style: none;
}
@media (min-width: 768px) {
  .vc-nav__links { display: flex; }
}
.vc-nav__links a {
  color: var(--vc-text-mid);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--vc-transition);
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
}
.vc-nav__links a:hover { color: var(--vc-accent); }

.vc-nav__cta {
  display: none;
  padding: 9px 20px;
  background: var(--vc-accent);
  color: var(--vc-bg-deep) !important;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--vc-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background var(--vc-transition), box-shadow var(--vc-transition);
}
.vc-nav__cta:hover {
  background: var(--vc-accent4);
  box-shadow: var(--vc-glow-purple);
  color: var(--vc-bg-deep) !important;
}
@media (min-width: 576px) {
  .vc-nav__cta { display: inline-flex; }
}

/* Burger */
.vc-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-sm);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}
@media (min-width: 768px) {
  .vc-burger { display: none; }
}
.vc-stroke {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vc-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.vc-burger[aria-expanded="true"] .vc-stroke--1 { transform: translateY(7px) rotate(45deg); }
.vc-burger[aria-expanded="true"] .vc-stroke--2 { opacity: 0; }
.vc-burger[aria-expanded="true"] .vc-stroke--3 { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.vc-mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 899;
  background: var(--vc-bg-mid);
  border-bottom: 1px solid var(--vc-border);
  padding: 20px 16px;
  flex-direction: column;
  gap: 4px;
}
.vc-mobile-nav.is-open { display: flex; }
.vc-mobile-nav a {
  padding: 12px 16px;
  color: var(--vc-text);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--vc-radius-sm);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.vc-mobile-nav a:hover { background: var(--vc-bg-card); color: var(--vc-accent); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.vc-hero {
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
  background-color: var(--vc-bg-deep);
}
@media (min-width: 768px) {
  .vc-hero { padding: 120px 0 90px; }
}
.vc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,14,26,0.75) 0%, rgba(15,26,46,0.5) 100%);
  z-index: 1;
}
.vc-hero__content {
  position: relative;
  z-index: 2;
}
.vc-hero__eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(78,205,196,0.12);
  border: 1px solid var(--vc-border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vc-accent);
  margin-bottom: 20px;
}
.vc-hero__h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--vc-text) 0%, var(--vc-accent4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vc-hero__sub {
  font-size: 18px;
  color: var(--vc-text-mid);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.vc-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Buttons */
.vc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--vc-radius);
  font-family: var(--vc-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--vc-transition);
  border: none;
  min-height: 44px;
}
.vc-btn--primary {
  background: var(--vc-accent);
  color: var(--vc-bg-deep);
  box-shadow: var(--vc-glow-teal);
}
.vc-btn--primary:hover {
  background: #3bbdb4;
  box-shadow: 0 0 28px rgba(78,205,196,0.6);
  color: var(--vc-bg-deep);
}
.vc-btn--ghost {
  background: transparent;
  color: var(--vc-text);
  border: 2px solid var(--vc-border2);
}
.vc-btn--ghost:hover {
  border-color: var(--vc-accent4);
  color: var(--vc-accent4);
  box-shadow: var(--vc-glow-purple);
}

/* ═══════════════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════════════ */
.vc-section {
  padding: 56px 0;
  background: var(--vc-bg-deep);
}
@media (min-width: 768px) {
  .vc-section { padding: 96px 0; }
}
.vc-section--alt { background: var(--vc-bg-mid); }
.vc-section--surface { background: var(--vc-bg-surface); }

.vc-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vc-accent);
  margin-bottom: 12px;
}

.vc-section-h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.vc-section-lead {
  font-size: 17px;
  color: var(--vc-text-mid);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ═══════════════════════════════════════════════════════
   FEATURES — 3 cards
═══════════════════════════════════════════════════════ */
.vc-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) {
  .vc-features-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .vc-features-grid { grid-template-columns: repeat(3, 1fr); }
}

.vc-feature-card {
  background: var(--vc-bg-card);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  padding: 32px 28px;
  transition: border-color var(--vc-transition), box-shadow var(--vc-transition);
}
.vc-feature-card:hover {
  border-color: var(--vc-accent);
  box-shadow: var(--vc-glow-teal);
}
.vc-feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(78,205,196,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.vc-feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.vc-feature-card__text {
  font-size: 14px;
  color: var(--vc-text-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   ABOUT STRIP
═══════════════════════════════════════════════════════ */
.vc-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .vc-about-grid { grid-template-columns: 1fr 1fr; }
}
.vc-about-img {
  border-radius: var(--vc-radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: var(--vc-glow-purple);
}
.vc-about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 480px) {
  .vc-about-stats { grid-template-columns: 1fr 1fr; }
}
.vc-about-stat {
  background: var(--vc-bg-card);
  border: 1px solid var(--vc-border2);
  border-radius: var(--vc-radius);
  padding: 18px 20px;
  text-align: center;
}
.vc-about-stat__num {
  font-family: var(--vc-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--vc-accent);
  display: block;
}
.vc-about-stat__label {
  font-size: 12px;
  color: var(--vc-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════
   PLATFORM EXTENDED — 2-col
═══════════════════════════════════════════════════════ */
.vc-platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .vc-platform-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}
.vc-platform-facts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vc-platform-fact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.vc-platform-fact__badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(167,139,250,0.12);
  border: 1px solid var(--vc-border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.vc-platform-fact__title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.vc-platform-fact__desc {
  font-size: 14px;
  color: var(--vc-text-mid);
}

/* ═══════════════════════════════════════════════════════
   WHY US — 6 numbered cards
═══════════════════════════════════════════════════════ */
.vc-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 576px) {
  .vc-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .vc-why-grid { grid-template-columns: repeat(3, 1fr); }
}
.vc-why-card {
  background: var(--vc-bg-card);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--vc-transition);
}
.vc-why-card:hover { border-color: var(--vc-accent4); }
.vc-why-card__num {
  font-family: var(--vc-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(78,205,196,0.12);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
  user-select: none;
}
.vc-why-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--vc-accent4);
}
.vc-why-card__text {
  font-size: 14px;
  color: var(--vc-text-mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   UPDATES — 4 cards
═══════════════════════════════════════════════════════ */
.vc-updates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) {
  .vc-updates-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .vc-updates-grid { grid-template-columns: repeat(4, 1fr); }
}
.vc-upd-card {
  background: var(--vc-bg-card);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  overflow: hidden;
  transition: transform var(--vc-transition), box-shadow var(--vc-transition);
}
.vc-upd-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--vc-glow-teal);
}
.vc-upd-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.vc-upd-card__body {
  padding: 18px 18px 22px;
}
.vc-upd-card__tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(78,205,196,0.1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vc-accent);
  margin-bottom: 10px;
}
.vc-upd-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}
.vc-upd-card__date {
  font-size: 12px;
  color: var(--vc-text-dim);
}

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.vc-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vc-faq-item {
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  overflow: hidden;
  background: var(--vc-bg-card);
  transition: border-color var(--vc-transition);
}
.vc-faq-item.is-open { border-color: var(--vc-accent); }
.vc-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  min-height: 44px;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  user-select: none;
  gap: 12px;
}
.vc-faq-q::-webkit-details-marker { display: none; }
.vc-faq-q::after {
  content: "+";
  font-size: 22px;
  color: var(--vc-accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.vc-faq-item.is-open .vc-faq-q::after { transform: rotate(45deg); }
.vc-faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--vc-text-mid);
  line-height: 1.7;
}
.vc-faq-item.is-open .vc-faq-a { display: block; }

/* ═══════════════════════════════════════════════════════
   GENERAL CONTEXT STRIP — 3-col
═══════════════════════════════════════════════════════ */
.vc-context-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 576px) {
  .vc-context-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .vc-context-grid { grid-template-columns: repeat(3, 1fr); }
}
.vc-context-card {
  padding: 24px;
  border-left: 3px solid var(--vc-accent);
}
.vc-context-card--alt { border-left-color: var(--vc-accent4); }
.vc-context-card--third { border-left-color: var(--vc-accent3); }
.vc-context-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.vc-context-card__text {
  font-size: 14px;
  color: var(--vc-text-mid);
  line-height: 1.65;
}

/* Context bottom strip */
.vc-context-strip {
  margin-top: 40px;
  padding: 24px;
  background: var(--vc-bg-card);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.vc-context-strip p {
  font-size: 13px;
  color: var(--vc-text-dim);
  max-width: 640px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIBLE GAMBLING SECTION (iframe-candidate)
═══════════════════════════════════════════════════════ */
.vc-rg {
  background: var(--vc-warn-bg);
  border-top: 2px solid rgba(255,79,79,0.3);
  border-bottom: 2px solid rgba(255,79,79,0.3);
  padding: 40px 0;
}
.vc-rg__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--vc-warn);
  margin-bottom: 14px;
}
.vc-rg__body {
  font-size: 15px;
  color: var(--vc-text-mid);
  line-height: 1.8;
  max-width: 700px;
}
.vc-rg__helpline {
  margin-top: 16px;
  font-weight: 700;
  color: var(--vc-text);
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.vc-footer {
  background: var(--vc-bg-mid);
  border-top: 1px solid var(--vc-border);
  padding: 56px 0 24px;
}
.vc-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 576px) {
  .vc-footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .vc-footer__cols { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
.vc-footer__brand-desc {
  font-size: 14px;
  color: var(--vc-text-mid);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.vc-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vc-text-dim);
  margin-bottom: 16px;
}
.vc-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vc-footer__links a {
  font-size: 14px;
  color: var(--vc-text-mid);
  transition: color var(--vc-transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.vc-footer__links a:hover { color: var(--vc-accent); }

/* Regulator strip */
.vc-footer__reg-strip {
  padding: 24px 0 0;
  margin-top: 40px;
  border-top: 1px solid var(--vc-border);
}
.vc-footer__reg-strip p {
  font-size: 13px;
  color: var(--vc-text-dim);
  margin-bottom: 20px;
  line-height: 1.65;
}

.vc-reg-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.vc-reg-frame {
  background: #0f1a2e;
  border: 1px solid rgba(78,205,196,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vc-reg-frame a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
}

/* Copyright / bottom */
.vc-footer__bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--vc-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.vc-footer__copy {
  font-size: 12px;
  color: var(--vc-text-dim);
}
.vc-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.vc-footer__legal-links a {
  font-size: 12px;
  color: var(--vc-text-dim);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.vc-footer__legal-links a:hover { color: var(--vc-accent); }

/* ═══════════════════════════════════════════════════════
   AGE GATE OVERLAY
═══════════════════════════════════════════════════════ */
.vc-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8,14,26,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.vc-gate.is-visible { display: flex; }
.vc-gate__card {
  background: var(--vc-bg-surface);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  padding: 40px 32px;
  text-align: center;
  max-width: min(480px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow-y: auto;
}
.vc-gate__icon { font-size: 40px; margin-bottom: 16px; }
.vc-gate__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.vc-gate__text {
  font-size: 14px;
  color: var(--vc-text-mid);
  margin-bottom: 28px;
  line-height: 1.65;
}
.vc-gate__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════ */
.vc-ck-bar {
  display: none;
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 9000;
  background: var(--vc-bg-surface);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  padding: 16px 20px;
}
.vc-ck-bar.is-visible { display: block; }
@media (min-width: 600px) {
  .vc-ck-bar {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 380px;
    padding: 22px 24px;
  }
}
.vc-ck-bar__text {
  font-size: 13px;
  color: var(--vc-text-mid);
  margin-bottom: 14px;
  line-height: 1.6;
}
.vc-ck-bar__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.vc-ck-bar__btns .vc-btn { font-size: 13px; padding: 10px 18px; }

/* ═══════════════════════════════════════════════════════
   INITIALS AVATAR (replaces team photos)
═══════════════════════════════════════════════════════ */
.vc-avatar {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--vc-display);
  font-size: 22px; font-weight: 700; letter-spacing: 0.5px;
  border-radius: 50%;
  text-transform: uppercase;
  flex-shrink: 0;
}
.vc-avatar--rounded-sq { border-radius: 16%; }
.vc-avatar--sharp-sq   { border-radius: 0; }
.vc-avatar--circle     { border-radius: 50%; }
.vc-avatar--shield     { clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); border-radius: 0; }
.vc-avatar--hex        { clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%); border-radius: 0; }
.vc-avatar--capsule    { width: 96px; border-radius: 50%; }
.vc-avatar--lg { width: 96px; height: 96px; font-size: 32px; }
.vc-avatar--sm { width: 40px; height: 40px; font-size: 14px; }

/* ═══════════════════════════════════════════════════════
   SUB-PAGE HERO
═══════════════════════════════════════════════════════ */
.vc-sub-hero {
  position: relative;
  padding: 64px 0 48px;
  background-color: var(--vc-bg-mid);
  overflow: hidden;
}
.vc-sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,14,26,0.8) 0%, rgba(21,32,56,0.5) 100%);
  z-index: 1;
}
@media (min-width: 768px) {
  .vc-sub-hero { padding: 96px 0 72px; }
}
.vc-sub-hero__content {
  position: relative;
  z-index: 2;
}
.vc-sub-hero__h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}
.vc-sub-hero__lead {
  font-size: 17px;
  color: var(--vc-text-mid);
  max-width: 580px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   GAME — CLUSTER CASCADE 5×4
═══════════════════════════════════════════════════════ */
.vc-game-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--vc-radius-lg);
  border: 1px solid var(--vc-border);
  background-color: var(--vc-bg-mid);
  padding: 24px 16px 28px;
}
.vc-game-hud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.vc-game-stat {
  text-align: center;
  min-width: 80px;
}
.vc-game-stat__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vc-text-dim);
  display: block;
}
.vc-game-stat__val {
  font-family: var(--vc-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--vc-accent3);
  display: block;
}
.vc-game-stat__val--accent { color: var(--vc-accent); }
.vc-game-stat__val--purple { color: var(--vc-accent4); }

/* game-ui */
/* 5x4 grid */
.vc-game-grid {
  display: grid;
  color: var(--vc-accent);
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  max-width: 380px;
  margin: 0 auto 20px;
}
@media (min-width: 480px) {
  .vc-game-grid { gap: 8px; max-width: 440px; }
}
.vc-cell {
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--vc-bg-card);
  border: 1px solid var(--vc-border);
  color: var(--vc-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.vc-cell img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.vc-cell.is-winning {
  border-color: var(--vc-accent3);
  box-shadow: 0 0 14px rgba(255,217,61,0.6);
  animation: vc-win-pulse 0.5s ease infinite alternate;
  z-index: 2;
}
.vc-cell.is-falling {
  animation: vc-fall-in 0.3s ease;
}
@keyframes vc-win-pulse {
  from { box-shadow: 0 0 8px rgba(255,217,61,0.4); }
  to   { box-shadow: 0 0 20px rgba(255,217,61,0.9); }
}
@keyframes vc-fall-in {
  from { transform: translateY(-20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Game controls */
.vc-game-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}
.vc-bet-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.vc-bet-btn {
  padding: 7px 13px;
  border-radius: var(--vc-radius-sm);
  border: 1px solid var(--vc-border);
  background: var(--vc-bg-card);
  color: var(--vc-text-mid);
  font-family: var(--vc-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--vc-transition);
  min-height: 44px;
  min-width: 44px;
}
.vc-bet-btn:hover, .vc-bet-btn.is-active {
  background: var(--vc-accent);
  color: var(--vc-bg-deep);
  border-color: var(--vc-accent);
}

.vc-spin-btn {
  padding: 14px 32px;
  border-radius: var(--vc-radius);
  background: linear-gradient(135deg, var(--vc-accent) 0%, var(--vc-accent4) 100%);
  color: var(--vc-bg-deep);
  font-family: var(--vc-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: var(--vc-glow-teal);
  transition: opacity var(--vc-transition), transform var(--vc-transition);
  min-height: 44px;
}
.vc-spin-btn:hover { opacity: 0.9; transform: scale(1.02); }
.vc-spin-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.vc-auto-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.vc-auto-btn {
  padding: 6px 12px;
  border-radius: var(--vc-radius-sm);
  border: 1px solid var(--vc-border2);
  background: transparent;
  color: var(--vc-text-dim);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--vc-transition);
  min-height: 44px;
  min-width: 44px;
}
.vc-auto-btn:hover, .vc-auto-btn.is-active { border-color: var(--vc-accent4); color: var(--vc-accent4); }

/* Win banner */
.vc-win-banner {
  display: none;
  text-align: center;
  padding: 12px 16px;
  margin: 0 0 16px;
  background: rgba(255,217,61,0.1);
  border: 1px solid rgba(255,217,61,0.4);
  border-radius: var(--vc-radius);
  animation: vc-banner-glow 0.8s ease infinite alternate;
}
@keyframes vc-banner-glow {
  from { box-shadow: 0 0 8px rgba(255,217,61,0.3); }
  to   { box-shadow: 0 0 22px rgba(255,217,61,0.7); }
}
.vc-win-banner.is-visible { display: block; }
.vc-win-banner__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vc-accent3);
  font-weight: 700;
}
.vc-win-banner__amount {
  font-family: var(--vc-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--vc-accent3);
}

/* Multiplier badge */
.vc-multiplier {
  display: none;
  text-align: center;
  font-family: var(--vc-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--vc-accent4);
  margin-bottom: 8px;
}
.vc-multiplier.is-visible { display: block; }

/* Game paytable */
.vc-paytable {
  margin-top: 24px;
  border-top: 1px solid var(--vc-border);
  padding-top: 20px;
}
.vc-paytable__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vc-text-dim);
  margin-bottom: 14px;
  text-align: center;
}
/* game-ui */
.vc-paytable-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (min-width: 480px) {
  .vc-paytable-grid { grid-template-columns: repeat(7, 1fr); }
}
.vc-pay-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: var(--vc-bg-card);
  border-radius: var(--vc-radius-sm);
  border: 1px solid var(--vc-border);
}
.vc-pay-row img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.vc-pay-row__mult {
  font-size: 11px;
  font-weight: 700;
  color: var(--vc-accent3);
}
.vc-pay-row__name {
  font-size: 9px;
  color: var(--vc-text-dim);
  text-align: center;
}

/* Touch-target booster — inline links that may render below 44px */
.vc-contact-block a,
.vc-rg a,
.vc-context-card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 2px 0;
}

/* ═══════════════════════════════════════════════════════
   CONTACT / ADDRESS
═══════════════════════════════════════════════════════ */
.vc-contact-block {
  background: var(--vc-bg-card);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  padding: 28px 28px;
  font-size: 14px;
  color: var(--vc-text-mid);
  line-height: 1.8;
}
.vc-contact-block a { color: var(--vc-accent); }

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════ */
.vc-legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0 60px;
}
.vc-legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 10px;
  color: var(--vc-accent4);
}
.vc-legal-body p {
  font-size: 15px;
  color: var(--vc-text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.vc-legal-body ul, .vc-legal-body ol {
  padding-left: 24px;
  color: var(--vc-text-mid);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

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