/* ============================================================
   VSC-CORE.CSS — Valhalla Social Casino Design System
   All classes prefixed vsc-, all variables prefixed --vsc-
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cinzel+Decorative:wght@400;700&family=Crimson+Pro:ital,wght@0,400;0,600;1,400&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  /* Backgrounds */
  --vsc-bg:           #0d0e14;
  --vsc-surface:      #141620;
  --vsc-surface-2:    #1c1e2c;
  --vsc-border:       #2a2d42;

  /* Copper accents */
  --vsc-copper:       #c4762a;
  --vsc-copper-light: #e8a84a;
  --vsc-copper-dim:   #5a3610;

  /* Ice secondary */
  --vsc-ice:          #a8c4e0;
  --vsc-ice-dim:      #3a5068;

  /* Rune texture */
  --vsc-rune:         #d4b896;

  /* Text */
  --vsc-text:         #e8e4d8;
  --vsc-muted:        #7a7d94;
  --vsc-heading:      #f2ede4;

  /* Functional */
  --vsc-success:      #4a9e6b;
  --vsc-warn:         #c47a2a;
  --vsc-danger:       #9e4a4a;

  /* Typography */
  --font-heading:   'Cinzel', serif;
  --font-display:   'Cinzel Decorative', serif;
  --font-body:      'Crimson Pro', serif;
  --font-ui:        'Inter', sans-serif;

  /* Spacing */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;

  /* Layout */
  --max-w: 1200px;
  --header-h: 72px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-med:  300ms ease;
  --t-slow: 500ms ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--vsc-bg);
  color: var(--vsc-text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--vsc-copper-light); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--vsc-copper); }
ul { list-style: none; }

/* ── Rune background pattern ─────────────────────────────── */
.vsc-rune-bg {
  position: relative;
}
.vsc-rune-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ctext x='10' y='40' font-size='28' fill='%23c4762a' opacity='0.04' font-family='serif'%3Eᚠ%3C/text%3E%3Ctext x='60' y='80' font-size='22' fill='%23c4762a' opacity='0.04' font-family='serif'%3Eᚢ%3C/text%3E%3Ctext x='5' y='110' font-size='24' fill='%23c4762a' opacity='0.03' font-family='serif'%3Eᚦ%3C/text%3E%3Ctext x='80' y='30' font-size='20' fill='%23c4762a' opacity='0.04' font-family='serif'%3Eᚨ%3C/text%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.vsc-rune-bg > * { position: relative; z-index: 1; }

/* ── Container ──────────────────────────────────────────── */
.vsc-container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-xl);
}

/* ── HEADER ─────────────────────────────────────────────── */
.vsc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--vsc-bg);
  border-bottom: 1px solid var(--vsc-border);
  transition: backdrop-filter var(--t-med), background var(--t-med), height var(--t-med);
}
.vsc-header.scrolled {
  height: 60px;
  background: rgba(13, 14, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.vsc-header nav {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-xl);
}

/* Logo */
.vsc-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
  flex-shrink: 0;
}
.vsc-logo__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vsc-copper-light);
  letter-spacing: 0.08em;
  line-height: 1;
}
.vsc-logo__sub {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--vsc-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
}

/* Nav links */
.vsc-nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  margin-left: auto;
}
.vsc-nav__links a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vsc-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--t-fast);
}
.vsc-nav__links a:hover,
.vsc-nav__links a.vsc-active {
  color: var(--vsc-copper-light);
}

/* Nav right */
.vsc-nav__right {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

/* 18+ badge */
.vsc-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--vsc-copper-dim);
  border: 1.5px solid var(--vsc-copper);
  color: var(--vsc-copper-light);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Hamburger */
.vsc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.vsc-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vsc-text);
  transition: transform var(--t-med), opacity var(--t-med);
}
.vsc-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vsc-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vsc-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.vsc-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(13, 14, 20, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2xl);
}
.vsc-nav-overlay.open { display: flex; }
.vsc-nav-overlay a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--vsc-text);
  letter-spacing: 0.1em;
}
.vsc-nav-overlay a:hover { color: var(--vsc-copper-light); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.vsc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all var(--t-med);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.vsc-btn--primary {
  background: linear-gradient(135deg, var(--vsc-copper), var(--vsc-copper-light));
  color: #0d0e14;
  box-shadow: 0 0 24px rgba(196, 118, 42, 0.3);
}
.vsc-btn--primary:hover {
  background: linear-gradient(135deg, var(--vsc-copper-light), var(--vsc-copper));
  color: #0d0e14;
  box-shadow: 0 0 36px rgba(196, 118, 42, 0.5);
  transform: translateY(-1px);
}
.vsc-btn--outline {
  background: transparent;
  border: 1.5px solid var(--vsc-copper);
  color: var(--vsc-copper);
}
.vsc-btn--outline:hover {
  background: var(--vsc-copper-dim);
  color: var(--vsc-copper-light);
  transform: translateY(-1px);
}
.vsc-btn--ghost {
  background: transparent;
  border: 1.5px solid var(--vsc-border);
  color: var(--vsc-muted);
}
.vsc-btn--ghost:hover {
  border-color: var(--vsc-muted);
  color: var(--vsc-text);
}
.vsc-btn--lg { padding: 1rem 2.25rem; font-size: 0.9375rem; }
.vsc-btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.vsc-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

/* ── SECTION DIVIDER ─────────────────────────────────────── */
.vsc-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.vsc-divider svg {
  display: block;
  width: 100%;
}

/* ── TYPOGRAPHY HELPERS ─────────────────────────────────── */
.vsc-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vsc-copper-light);
}
.vsc-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--vsc-heading);
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.vsc-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--vsc-heading);
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.vsc-h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--vsc-heading);
}
.vsc-section-title {
  text-align: center;
  margin-bottom: var(--sp-sm);
}
.vsc-section-sub {
  text-align: center;
  color: var(--vsc-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-3xl);
}
.vsc-copper-text { color: var(--vsc-copper-light); }
.vsc-muted-text { color: var(--vsc-muted); }

/* ── HERO ───────────────────────────────────────────────── */
.vsc-hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-3xl);
  padding: var(--sp-4xl) var(--sp-xl);
  max-width: var(--max-w);
  margin-inline: auto;
  position: relative;
}
.vsc-hero__content { display: flex; flex-direction: column; gap: var(--sp-lg); }
.vsc-hero__disclaimer {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--vsc-muted);
  border-left: 2px solid var(--vsc-copper-dim);
  padding-left: var(--sp-md);
}
.vsc-hero__cta { display: flex; gap: var(--sp-md); flex-wrap: wrap; }
.vsc-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Floating particles */
.vsc-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.vsc-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--vsc-copper-light);
  border-radius: 50%;
  animation: vscFloat linear infinite;
  opacity: 0;
}
@keyframes vscFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-20px) rotate(360deg); opacity: 0; }
}

/* Rune corner decorations */
.vsc-rune-corner {
  position: absolute;
  font-size: 3rem;
  color: var(--vsc-copper);
  opacity: 0.15;
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}
.vsc-rune-corner--tl { top: 1rem; left: 1rem; }
.vsc-rune-corner--tr { top: 1rem; right: 1rem; }
.vsc-rune-corner--bl { bottom: 1rem; left: 1rem; }
.vsc-rune-corner--br { bottom: 1rem; right: 1rem; }

/* ── STATS BAR ──────────────────────────────────────────── */
.vsc-stats {
  background: var(--vsc-surface);
  border-top: 1px solid var(--vsc-border);
  border-bottom: 1px solid var(--vsc-border);
}
.vsc-stats__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: var(--sp-lg) var(--sp-xl);
  max-width: var(--max-w);
  margin-inline: auto;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.vsc-stat {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vsc-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vsc-stat__icon { font-size: 1.2rem; }

/* ── SECTION BASE ───────────────────────────────────────── */
.vsc-section {
  padding: var(--sp-4xl) var(--sp-xl);
  max-width: var(--max-w);
  margin-inline: auto;
}
.vsc-section--full {
  padding: var(--sp-4xl) 0;
  max-width: none;
}
.vsc-section--surface {
  background: var(--vsc-surface);
  padding: var(--sp-4xl) var(--sp-xl);
}

/* ── GAME BLOCKS (alternating) ─────────────────────────── */
.vsc-games { display: flex; flex-direction: column; gap: var(--sp-4xl); }
.vsc-game-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.vsc-game-block--reverse { direction: rtl; }
.vsc-game-block--reverse > * { direction: ltr; }

.vsc-game-visual {
  background: var(--vsc-surface-2);
  border: 1px solid var(--vsc-border);
  border-radius: 8px;
  border-top: 3px solid var(--vsc-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}
.vsc-game-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,118,42,0.08) 0%, transparent 70%);
}

.vsc-game-info { display: flex; flex-direction: column; gap: var(--sp-md); }
.vsc-game-badges { display: flex; gap: var(--sp-sm); flex-wrap: wrap; }
.vsc-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  background: var(--vsc-surface-2);
  border: 1px solid var(--vsc-border);
  color: var(--vsc-muted);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
}
.vsc-badge--copper {
  background: var(--vsc-copper-dim);
  border-color: var(--vsc-copper);
  color: var(--vsc-copper-light);
}
.vsc-game-desc { color: var(--vsc-muted); font-size: 1rem; }
.vsc-game-disclaimer {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--vsc-muted);
  opacity: 0.7;
  margin-top: var(--sp-xs);
}

/* ── WHY VALHALLA ────────────────────────────────────────── */
.vsc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}
.vsc-why-card {
  background: var(--vsc-surface);
  border: 1px solid var(--vsc-border);
  border-top: 3px solid var(--vsc-copper);
  border-radius: 6px;
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.vsc-why-card__icon { font-size: 2rem; }
.vsc-why-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--vsc-heading);
}
.vsc-why-card__text { color: var(--vsc-muted); font-size: 0.95rem; }

/* ── RESPONSIBLE PLAY ────────────────────────────────────── */
.vsc-rp-tips {
  counter-reset: rp-tip;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}
.vsc-rp-tip {
  counter-increment: rp-tip;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  background: var(--vsc-surface-2);
  border-radius: 6px;
  border-left: 3px solid var(--vsc-copper);
}
.vsc-rp-tip::before {
  content: counter(rp-tip);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vsc-copper-light);
  min-width: 1.5rem;
  flex-shrink: 0;
}
.vsc-rp-tip p { color: var(--vsc-text); }

.vsc-warn-box {
  background: rgba(196, 118, 42, 0.08);
  border: 1px solid var(--vsc-copper-dim);
  border-left: 4px solid var(--vsc-warn);
  border-radius: 6px;
  padding: var(--sp-lg) var(--sp-xl);
  margin: var(--sp-xl) 0;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--vsc-text);
}
.vsc-warn-box strong { color: var(--vsc-copper-light); }

/* Org cards */
.vsc-org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-md);
  margin: var(--sp-xl) 0;
}
.vsc-org-card {
  background: var(--vsc-surface-2);
  border: 1px solid var(--vsc-border);
  border-radius: 6px;
  padding: var(--sp-md) var(--sp-lg);
  text-align: center;
}
.vsc-org-card a {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vsc-ice);
}
.vsc-org-card a:hover { color: var(--vsc-copper-light); }
.vsc-org-card p {
  font-size: 0.8rem;
  color: var(--vsc-muted);
  margin-top: var(--sp-xs);
}

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.vsc-faq { max-width: 720px; margin-inline: auto; }
.vsc-faq__item {
  border-bottom: 1px solid var(--vsc-border);
}
.vsc-faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-lg) 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--vsc-heading);
  transition: color var(--t-fast);
}
.vsc-faq__q:hover { color: var(--vsc-copper-light); }
.vsc-faq__q[aria-expanded="true"] { color: var(--vsc-copper-light); }
.vsc-faq__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1.5px solid var(--vsc-copper);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vsc-copper);
  font-size: 0.75rem;
  transition: transform var(--t-med);
}
.vsc-faq__q[aria-expanded="true"] .vsc-faq__arrow { transform: rotate(180deg); }
.vsc-faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--t-slow);
}
.vsc-faq__a.open { max-height: 600px; }
.vsc-faq__a-inner {
  padding-bottom: var(--sp-lg);
  color: var(--vsc-muted);
  font-size: 0.975rem;
  line-height: 1.75;
}

/* ── SUPPORT ASIDE ───────────────────────────────────────── */
.vsc-support {
  background: var(--vsc-surface);
  border: 1px solid var(--vsc-border);
  border-top: 3px solid var(--vsc-ice);
  border-radius: 6px;
  padding: var(--sp-xl);
  margin: var(--sp-3xl) auto;
  max-width: var(--max-w);
  margin-inline: auto;
}
.vsc-support__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--vsc-ice);
  margin-bottom: var(--sp-sm);
}
.vsc-support p { color: var(--vsc-muted); font-size: 0.9rem; margin-bottom: var(--sp-md); }
.vsc-support__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md) var(--sp-xl);
}
.vsc-support__links a {
  font-family: var(--font-ui);
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--vsc-ice);
  transition: color var(--t-fast);
}
.vsc-support__links a:hover { color: var(--vsc-copper-light); }

/* ── FOOTER ──────────────────────────────────────────────── */
.vsc-footer {
  background: var(--vsc-surface);
  border-top: 1px solid var(--vsc-border);
  padding: var(--sp-3xl) var(--sp-xl) var(--sp-xl);
}
.vsc-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-3xl);
  max-width: var(--max-w);
  margin-inline: auto;
  margin-bottom: var(--sp-3xl);
}
.vsc-footer__brand p {
  margin-top: var(--sp-md);
  font-size: 0.875rem;
  color: var(--vsc-muted);
  max-width: 380px;
  line-height: 1.65;
}
.vsc-footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--vsc-copper-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-lg);
}
.vsc-footer__col ul { display: flex; flex-direction: column; gap: var(--sp-sm); }
.vsc-footer__col a {
  font-size: 0.875rem;
  color: var(--vsc-muted);
}
.vsc-footer__col a:hover { color: var(--vsc-text); }
.vsc-footer__bottom {
  border-top: 1px solid var(--vsc-border);
  padding-top: var(--sp-lg);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--vsc-muted);
  max-width: var(--max-w);
  margin-inline: auto;
  line-height: 1.8;
}

/* ── GAME PAGE LAYOUT ────────────────────────────────────── */
.vsc-game-page {
  max-width: 900px;
  margin-inline: auto;
  padding: var(--sp-3xl) var(--sp-xl);
}
.vsc-game-hero {
  text-align: center;
  padding: var(--sp-2xl) 0;
}
.vsc-game-hero__icon { font-size: 5rem; margin-bottom: var(--sp-md); }

/* Game canvas */
.vsc-game-canvas {
  background: var(--vsc-surface);
  border: 1px solid var(--vsc-border);
  border-top: 4px solid var(--vsc-copper);
  border-radius: 8px;
  padding: var(--sp-2xl);
  margin: var(--sp-2xl) 0;
  text-align: center;
}
.vsc-game-balance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-xl);
  flex-wrap: wrap;
}
.vsc-coin-display {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--vsc-copper-light);
}
.vsc-coin-display span { color: var(--vsc-muted); font-size: 0.875rem; font-family: var(--font-ui); }

.vsc-result-msg {
  min-height: 2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--vsc-copper-light);
  margin: var(--sp-md) 0;
  transition: all var(--t-med);
}

/* Dice */
.vsc-dice-row {
  display: flex;
  justify-content: center;
  gap: var(--sp-xl);
  margin: var(--sp-xl) 0;
}
.vsc-die {
  width: 80px;
  height: 80px;
  background: var(--vsc-surface-2);
  border: 2px solid var(--vsc-copper);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-family: serif;
  color: var(--vsc-copper-light);
  transition: transform var(--t-fast);
}
.vsc-die.rolling {
  animation: diceRoll 0.6s ease;
}
@keyframes diceRoll {
  0%   { transform: rotate(0deg) scale(1); }
  25%  { transform: rotate(-15deg) scale(1.1); }
  50%  { transform: rotate(15deg) scale(0.9); }
  75%  { transform: rotate(-8deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1); }
}

/* Payout table */
.vsc-payout-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-xl) 0;
  font-size: 0.9rem;
}
.vsc-payout-table th {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vsc-copper-light);
  padding: var(--sp-sm) var(--sp-md);
  border-bottom: 2px solid var(--vsc-copper-dim);
  text-align: left;
}
.vsc-payout-table td {
  padding: var(--sp-sm) var(--sp-md);
  border-bottom: 1px solid var(--vsc-border);
  color: var(--vsc-text);
}
.vsc-payout-table tr:last-child td { border-bottom: none; }
.vsc-payout-table td:last-child { color: var(--vsc-copper-light); font-weight: 600; }

/* Bingo card */
.vsc-bingo-card {
  display: inline-grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin: var(--sp-xl) 0;
  background: var(--vsc-border);
  border: 2px solid var(--vsc-copper);
  border-radius: 6px;
  padding: 4px;
}
.vsc-bingo-header {
  display: inline-grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin: var(--sp-lg) 0 0;
  background: transparent;
  width: auto;
}
.vsc-bingo-header-cell {
  width: 52px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vsc-copper-light);
  letter-spacing: 0.08em;
}
.vsc-bingo-cell {
  width: 52px;
  height: 52px;
  background: var(--vsc-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vsc-text);
  border-radius: 3px;
  cursor: default;
  transition: background var(--t-fast), color var(--t-fast);
}
.vsc-bingo-cell--free {
  background: var(--vsc-copper-dim);
  color: var(--vsc-copper-light);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vsc-bingo-cell--marked {
  background: var(--vsc-copper-dim);
  color: var(--vsc-copper-light);
}
.vsc-bingo-cell--win {
  background: linear-gradient(135deg, var(--vsc-copper), var(--vsc-copper-light));
  color: #0d0e14;
  animation: bingoPulse 0.5s ease;
}
@keyframes bingoPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.vsc-bingo-caller {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--vsc-copper-light);
  margin: var(--sp-md) 0;
}
.vsc-bingo-called-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto var(--sp-md);
  min-height: 32px;
}
.vsc-bingo-called-num {
  background: var(--vsc-surface-2);
  color: var(--vsc-muted);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  padding: 2px 5px;
  border-radius: 3px;
}

/* Flipper zones */
.vsc-flipper-zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  margin: var(--sp-xl) 0;
}
.vsc-zone-btn {
  background: var(--vsc-surface-2);
  border: 2px solid var(--vsc-border);
  border-radius: 6px;
  padding: var(--sp-lg) var(--sp-md);
  cursor: pointer;
  text-align: center;
  transition: all var(--t-med);
  color: var(--vsc-text);
  font-family: var(--font-ui);
}
.vsc-zone-btn:hover { border-color: var(--vsc-copper); background: var(--vsc-copper-dim); }
.vsc-zone-btn.selected {
  border-color: var(--vsc-copper-light);
  background: var(--vsc-copper-dim);
  box-shadow: 0 0 16px rgba(196,118,42,0.3);
}
.vsc-zone-btn.landed {
  border-color: var(--vsc-success);
  background: rgba(74, 158, 107, 0.15);
}
.vsc-zone-icon { font-size: 2rem; display: block; margin-bottom: var(--sp-xs); }
.vsc-zone-name { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.vsc-mjolnir-display {
  font-size: 4rem;
  margin: var(--sp-md) 0;
  display: block;
  transition: transform var(--t-slow);
}
.vsc-mjolnir-display.flying {
  animation: mjolnirFly 0.8s ease-in-out;
}
@keyframes mjolnirFly {
  0%   { transform: translateY(0) rotate(0deg) scale(1); }
  30%  { transform: translateY(-40px) rotate(120deg) scale(1.2); }
  60%  { transform: translateY(-20px) rotate(240deg) scale(1.1); }
  100% { transform: translateY(0) rotate(360deg) scale(1); }
}
.vsc-lightning-strike {
  position: fixed;
  inset: 0;
  background: rgba(232, 168, 74, 0.15);
  pointer-events: none;
  z-index: 9999;
  animation: lightningFlash 0.5s ease;
}
@keyframes lightningFlash {
  0%   { opacity: 1; }
  50%  { opacity: 0.8; }
  100% { opacity: 0; }
}
.vsc-streak-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--vsc-copper), var(--vsc-copper-light));
  color: #0d0e14;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Shield Wall grid */
.vsc-shield-grid {
  display: inline-grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin: var(--sp-xl) 0;
  background: var(--vsc-border);
  padding: 6px;
  border-radius: 6px;
  border: 2px solid var(--vsc-copper-dim);
}
.vsc-shield-cell {
  width: 56px;
  height: 56px;
  background: var(--vsc-surface-2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  border: 1px solid var(--vsc-border);
  user-select: none;
}
.vsc-shield-cell:hover { background: var(--vsc-surface); border-color: var(--vsc-copper-dim); }
.vsc-shield-cell--king {
  background: var(--vsc-copper-dim);
  border-color: var(--vsc-copper);
  cursor: default;
}
.vsc-shield-cell--shield {
  background: rgba(168, 196, 224, 0.1);
  border-color: var(--vsc-ice-dim);
}
.vsc-shield-cell--hit {
  animation: cellHit 0.4s ease;
}
.vsc-shield-cell--broken {
  opacity: 0.4;
  cursor: default;
}
@keyframes cellHit {
  0%   { transform: scale(1); background: rgba(158, 74, 74, 0.4); }
  50%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.vsc-skill-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: var(--vsc-surface-2);
  border: 1px solid var(--vsc-ice-dim);
  color: var(--vsc-ice);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-md);
}
.vsc-score-display {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--vsc-copper-light);
  margin: var(--sp-md) 0;
}
.vsc-score-record {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--vsc-muted);
  margin-bottom: var(--sp-md);
}
.vsc-shield-controls {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-lg);
}
.vsc-attack-dir {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--vsc-muted);
  padding: var(--sp-sm) var(--sp-md);
  background: var(--vsc-surface-2);
  border: 1px solid var(--vsc-border);
  border-radius: 4px;
}

/* Legal pages */
.vsc-legal {
  max-width: 820px;
  margin-inline: auto;
  padding: var(--sp-3xl) var(--sp-xl);
}
.vsc-legal h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--vsc-copper-light);
  margin: var(--sp-2xl) 0 var(--sp-md);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--vsc-border);
}
.vsc-legal h2:first-of-type { border-top: none; margin-top: var(--sp-xl); }
.vsc-legal p { color: var(--vsc-muted); margin-bottom: var(--sp-md); line-height: 1.8; }
.vsc-legal ul, .vsc-legal ol {
  padding-left: var(--sp-xl);
  margin-bottom: var(--sp-md);
  color: var(--vsc-muted);
  display: block;
}
.vsc-legal ul { list-style: disc; }
.vsc-legal ol { list-style: decimal; }
.vsc-legal li { margin-bottom: var(--sp-sm); line-height: 1.75; }
.vsc-legal a { color: var(--vsc-ice); }
.vsc-legal strong { color: var(--vsc-text); }
.vsc-legal table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-lg) 0;
  font-size: 0.875rem;
}
.vsc-legal table th {
  background: var(--vsc-surface-2);
  padding: var(--sp-sm) var(--sp-md);
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--vsc-copper-light);
  border-bottom: 2px solid var(--vsc-border);
}
.vsc-legal table td {
  padding: var(--sp-sm) var(--sp-md);
  border-bottom: 1px solid var(--vsc-border);
  color: var(--vsc-muted);
  vertical-align: top;
}

/* ── RESPONSIBLE PLAY PAGE ───────────────────────────────── */
.vsc-rp-section {
  background: var(--vsc-surface-2);
  border: 1px solid var(--vsc-border);
  border-radius: 8px;
  padding: var(--sp-2xl);
  margin-bottom: var(--sp-xl);
}
.vsc-rp-section h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--vsc-copper-light);
  margin-bottom: var(--sp-lg);
}
.vsc-warning-signs {
  columns: 2;
  gap: var(--sp-xl);
  list-style: none;
  padding: 0;
}
.vsc-warning-signs li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
  color: var(--vsc-muted);
  font-size: 0.95rem;
  break-inside: avoid;
}
.vsc-warning-signs li::before {
  content: '⚠';
  color: var(--vsc-warn);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.vsc-support-dir-table { width: 100%; border-collapse: collapse; }
.vsc-support-dir-table th {
  text-align: left;
  padding: var(--sp-sm) var(--sp-md);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--vsc-copper-light);
  border-bottom: 2px solid var(--vsc-border);
}
.vsc-support-dir-table td {
  padding: var(--sp-sm) var(--sp-md);
  border-bottom: 1px solid var(--vsc-border);
  color: var(--vsc-muted);
  font-size: 0.875rem;
}
.vsc-support-dir-table td a { color: var(--vsc-ice); }

/* ── HOW TO PLAY ─────────────────────────────────────────── */
.vsc-how-to {
  margin-top: var(--sp-3xl);
}
.vsc-how-to h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--vsc-copper-light);
  margin-bottom: var(--sp-xl);
}

/* ── PAGE HEADER (inner pages) ───────────────────────────── */
.vsc-page-header {
  background: var(--vsc-surface);
  border-bottom: 1px solid var(--vsc-border);
  padding: var(--sp-3xl) var(--sp-xl);
  text-align: center;
}
.vsc-page-header p {
  color: var(--vsc-muted);
  margin-top: var(--sp-sm);
  font-size: 1rem;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .vsc-hero { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .vsc-hero__visual { display: none; }
  .vsc-hero__cta { justify-content: center; }
  .vsc-game-block,
  .vsc-game-block--reverse { grid-template-columns: 1fr; direction: ltr; }
  .vsc-game-block--reverse > * { direction: ltr; }
  .vsc-why-grid { grid-template-columns: 1fr; }
  .vsc-footer__grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .vsc-warning-signs { columns: 1; }
  .vsc-flipper-zones { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .vsc-nav__links { display: none; }
  .vsc-hamburger { display: flex; }
  .vsc-container { padding-inline: var(--sp-md); }
  .vsc-section { padding: var(--sp-2xl) var(--sp-md); }
  .vsc-game-page { padding: var(--sp-xl) var(--sp-md); }
  .vsc-legal { padding: var(--sp-xl) var(--sp-md); }
  .vsc-bingo-cell { width: 44px; height: 44px; font-size: 0.7rem; }
  .vsc-bingo-header-cell { width: 44px; }
  .vsc-shield-cell { width: 46px; height: 46px; font-size: 1.1rem; }
  .vsc-stats__inner { gap: var(--sp-md); }
  .vsc-die { width: 64px; height: 64px; font-size: 1.8rem; }
  .vsc-game-canvas { padding: var(--sp-lg); }
}
@media (max-width: 480px) {
  .vsc-bingo-cell { width: 38px; height: 38px; }
  .vsc-bingo-header-cell { width: 38px; }
  .vsc-shield-cell { width: 40px; height: 40px; font-size: 1rem; }
  .vsc-die { width: 56px; height: 56px; font-size: 1.5rem; }
  .vsc-flipper-zones { grid-template-columns: repeat(2, 1fr); }
}

/* ── UTILITIES ───────────────────────────────────────────── */
.vsc-text-center { text-align: center; }
.vsc-mt-sm { margin-top: var(--sp-sm); }
.vsc-mt-md { margin-top: var(--sp-md); }
.vsc-mt-lg { margin-top: var(--sp-lg); }
.vsc-mt-xl { margin-top: var(--sp-xl); }
.vsc-mt-2xl { margin-top: var(--sp-2xl); }
.vsc-mb-md { margin-bottom: var(--sp-md); }
.vsc-mb-lg { margin-bottom: var(--sp-lg); }
.vsc-mb-xl { margin-bottom: var(--sp-xl); }
.vsc-mb-2xl { margin-bottom: var(--sp-2xl); }
.vsc-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.vsc-highlight { color: var(--vsc-copper-light); }
.vsc-ice { color: var(--vsc-ice); }
