/* ═══════════════════════════════════════════════════════════
   ASH-CORE.CSS  |  Albion Spin House  |  v1.0  |  May 2026
   ═══════════════════════════════════════════════════════════ */

/* ── 1. CSS CUSTOM PROPERTIES ──────────────────────────────── */
:root {
  --ash-bg:           #0D0D1A;
  --ash-surface:      #161625;
  --ash-surface-alt:  #1E1E30;
  --ash-border:       #2A2A45;
  --ash-gold:         #C8A84B;
  --ash-gold-bright:  #F0C93A;
  --ash-gold-dim:     #6B5820;
  --ash-emerald:      #2ECC71;
  --ash-emerald-dark: #1A8A4A;
  --ash-crimson:      #C0392B;
  --ash-text:         #E8E0D0;
  --ash-muted:        #8A8A9A;
  --ash-font-heading: 'Cormorant Garamond', Georgia, serif;
  --ash-font-body:    'Inter', system-ui, sans-serif;
  --ash-radius:       6px;
  --ash-transition:   0.22s ease;
  --ash-shadow:       0 4px 24px rgba(0,0,0,0.45);
  --ash-glow-gold:    0 0 24px rgba(200,168,75,0.25);
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--ash-bg);
  color: var(--ash-text);
  font-family: var(--ash-font-body);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--ash-gold); text-decoration: none; transition: color var(--ash-transition); }
a:hover { color: var(--ash-gold-bright); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -99px;
  left: 1rem;
  background: var(--ash-gold);
  color: #0D0D1A;
  padding: 0.5rem 1rem;
  border-radius: var(--ash-radius);
  font-weight: 700;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--ash-font-heading); line-height: 1.2; }

h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--ash-text);
}
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--ash-gold);
}
h3 {
  font-family: var(--ash-font-body);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--ash-text);
}
h4 { font-size: 1.1rem; font-weight: 600; color: var(--ash-text); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gold  { color: var(--ash-gold); }
.text-emerald { color: var(--ash-emerald); }
.text-crimson { color: var(--ash-crimson); }
.text-muted { color: var(--ash-muted); font-size: 0.875rem; }
.text-small { font-size: 0.75rem; color: var(--ash-muted); }

em.highlight {
  font-style: italic;
  color: var(--ash-gold);
}

/* ── 4. LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.container--narrow { max-width: 860px; }

.section { padding-block: 4rem; }
.section--sm { padding-block: 2.5rem; }
.section--lg { padding-block: 6rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── 5. HEADER / TOPBAR ───────────────────────────────────── */
.ash-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(13,13,26,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ash-border);
}

.ash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

/* Logo */
.ash-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ash-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ash-gold);
  white-space: nowrap;
  text-decoration: none;
}
.ash-logo:hover { color: var(--ash-gold-bright); }
.ash-logo__icon { font-size: 1.5rem; }

/* Nav */
.ash-nav { display: flex; align-items: center; gap: 0.25rem; }
.ash-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ash-text);
  padding: 0.4rem 0.75rem;
  border-radius: var(--ash-radius);
  transition: color var(--ash-transition), background var(--ash-transition);
  text-decoration: none;
}
.ash-nav__link:hover,
.ash-nav__link[aria-current="page"] {
  color: var(--ash-gold);
  background: rgba(200,168,75,0.08);
}

/* Legal dropdown */
.ash-nav__dropdown { position: relative; }
.ash-nav__dropdown-toggle {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ash-text);
  padding: 0.4rem 0.75rem;
  border-radius: var(--ash-radius);
  background: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--ash-transition);
}
.ash-nav__dropdown-toggle:hover { color: var(--ash-gold); }
.ash-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--ash-surface);
  border: 1px solid var(--ash-border);
  border-radius: var(--ash-radius);
  min-width: 180px;
  box-shadow: var(--ash-shadow);
  z-index: 100;
}
.ash-nav__dropdown:hover .ash-nav__dropdown-menu,
.ash-nav__dropdown:focus-within .ash-nav__dropdown-menu {
  display: block;
}
.ash-nav__dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--ash-text);
  transition: background var(--ash-transition), color var(--ash-transition);
}
.ash-nav__dropdown-menu a:hover { background: rgba(200,168,75,0.08); color: var(--ash-gold); }

/* Header right */
.ash-header__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* 18+ Badge */
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ash-crimson);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

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

/* Mobile nav drawer */
.ash-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
}
.ash-mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.ash-mobile-nav__drawer {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--ash-surface);
  border-left: 1px solid var(--ash-border);
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.ash-mobile-nav.is-open { display: block; }
.ash-mobile-nav.is-open .ash-mobile-nav__drawer { transform: translateX(0); }
.ash-mobile-nav__drawer a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--ash-text);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--ash-radius);
  text-decoration: none;
  transition: background var(--ash-transition), color var(--ash-transition);
}
.ash-mobile-nav__drawer a:hover { background: rgba(200,168,75,0.1); color: var(--ash-gold); }
.ash-mobile-nav__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: 1px solid var(--ash-border);
  color: var(--ash-text);
  border-radius: var(--ash-radius);
  padding: 0.4rem 0.75rem;
  font-size: 1rem;
}

/* ── 6. FOOTER ────────────────────────────────────────────── */
.ash-footer {
  background: var(--ash-surface);
  border-top: 1px solid var(--ash-border);
  padding-top: 3rem;
}

.ash-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.ash-footer__brand p {
  font-size: 0.85rem;
  color: var(--ash-muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.ash-footer__col h4 {
  font-family: var(--ash-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ash-muted);
  margin-bottom: 1rem;
}

.ash-footer__col a {
  display: block;
  font-size: 0.875rem;
  color: var(--ash-muted);
  padding-block: 0.2rem;
  text-decoration: none;
  transition: color var(--ash-transition);
}
.ash-footer__col a:hover { color: var(--ash-gold); }

.ash-footer__bottom {
  border-top: 1px solid var(--ash-border);
  padding-block: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ash-footer__bottom p {
  font-size: 0.75rem;
  color: var(--ash-muted);
  margin: 0;
}
.ash-footer__badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ash-footer__badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  background: var(--ash-border);
  color: var(--ash-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ash-footer__badge--18 { background: var(--ash-crimson); color: #fff; }

.ash-footer__disclaimer {
  font-size: 0.75rem;
  color: var(--ash-muted);
  text-align: center;
  padding-block: 1rem;
  border-top: 1px solid var(--ash-border);
  line-height: 1.5;
}

/* ── 7. BUTTONS ───────────────────────────────────────────── */
.ash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--ash-radius);
  padding: 0.75em 1.75em;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--ash-transition);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  font-family: var(--ash-font-body);
}

.ash-btn--primary {
  background: var(--ash-gold);
  color: #0D0D1A;
  border-color: var(--ash-gold);
}
.ash-btn--primary:hover {
  background: var(--ash-gold-bright);
  border-color: var(--ash-gold-bright);
  color: #0D0D1A;
  box-shadow: var(--ash-glow-gold);
}

.ash-btn--outline {
  background: transparent;
  color: var(--ash-text);
  border-color: var(--ash-border);
}
.ash-btn--outline:hover {
  border-color: var(--ash-gold);
  color: var(--ash-gold);
}

.ash-btn--emerald {
  background: var(--ash-emerald);
  color: #0D0D1A;
  border-color: var(--ash-emerald);
}
.ash-btn--emerald:hover {
  background: #27ae60;
  border-color: #27ae60;
  color: #0D0D1A;
}

.ash-btn--danger {
  background: var(--ash-crimson);
  color: #fff;
  border-color: var(--ash-crimson);
}
.ash-btn--danger:hover { background: #a93226; border-color: #a93226; }

.ash-btn--sm { padding: 0.5em 1.1em; font-size: 0.85rem; }
.ash-btn--lg { padding: 0.9em 2.2em; font-size: 1.05rem; }

/* ── 8. CARDS ─────────────────────────────────────────────── */
.ash-card {
  background: var(--ash-surface);
  border: 1px solid var(--ash-border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--ash-transition), box-shadow var(--ash-transition);
}
.ash-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ash-shadow), var(--ash-glow-gold);
}

/* Game card */
.game-card {
  position: relative;
  background: var(--ash-surface);
  border: 1px solid var(--ash-border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--ash-transition), box-shadow var(--ash-transition);
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 16px rgba(200,168,75,0.15);
}

.game-card__accent {
  height: 4px;
  width: 100%;
}

.game-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-card__icon {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.game-card__free-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--ash-emerald);
  color: #0D0D1A;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.game-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ash-text);
  margin-bottom: 0.4rem;
  font-family: var(--ash-font-heading);
}

.game-card__desc {
  font-size: 0.875rem;
  color: var(--ash-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.game-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.game-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  background: rgba(200,168,75,0.1);
  color: var(--ash-gold);
  letter-spacing: 0.04em;
}

/* ── 9. SECTION HEADERS ───────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header p {
  color: var(--ash-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin-inline: auto;
  margin-top: 0.75rem;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ash-gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── 10. ACCORDION / FAQ ──────────────────────────────────── */
.ash-accordion { border-top: 1px solid var(--ash-border); }
.ash-accordion__item { border-bottom: 1px solid var(--ash-border); }

.ash-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  background: none;
  border: none;
  color: var(--ash-text);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--ash-font-body);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--ash-transition);
}
.ash-accordion__trigger:hover { color: var(--ash-gold); }

.ash-accordion__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--ash-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--ash-muted);
  transition: border-color var(--ash-transition), color var(--ash-transition), transform var(--ash-transition);
}
.ash-accordion__trigger[aria-expanded="true"] .ash-accordion__icon {
  border-color: var(--ash-gold);
  color: var(--ash-gold);
  transform: rotate(45deg);
}

.ash-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
}
.ash-accordion__body.is-open {
  max-height: 400px;
}
.ash-accordion__content {
  padding-bottom: 1.25rem;
  color: var(--ash-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.ash-accordion__content a { color: var(--ash-gold); }

/* ── 11. WARN BOX ─────────────────────────────────────────── */
.ash-warn-box {
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.4);
  border-left: 4px solid var(--ash-crimson);
  border-radius: var(--ash-radius);
  padding: 1.25rem 1.5rem;
  margin-block: 1.5rem;
}
.ash-warn-box__title {
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.ash-warn-box p {
  color: var(--ash-muted);
  font-size: 0.9rem;
  margin: 0;
}
.ash-warn-box a { color: #e74c3c; font-weight: 600; }
.ash-warn-box a:hover { color: #c0392b; }

.ash-info-box {
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.25);
  border-left: 4px solid var(--ash-gold);
  border-radius: var(--ash-radius);
  padding: 1.25rem 1.5rem;
  margin-block: 1.5rem;
}
.ash-info-box p { color: var(--ash-muted); font-size: 0.9rem; margin: 0; }

/* ── 12. ORG CARDS ────────────────────────────────────────── */
.org-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.org-card {
  background: var(--ash-surface);
  border: 1px solid var(--ash-border);
  border-radius: 8px;
  padding: 1.25rem;
  text-decoration: none;
  transition: border-color var(--ash-transition), transform var(--ash-transition);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.org-card:hover {
  border-color: var(--ash-gold);
  transform: translateY(-2px);
}
.org-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ash-text);
}
.org-card__contact {
  font-size: 0.8rem;
  color: var(--ash-gold);
  font-weight: 600;
}
.org-card__desc {
  font-size: 0.78rem;
  color: var(--ash-muted);
  line-height: 1.5;
}

/* ── 13. SUPPORT ASIDE ────────────────────────────────────── */
.ash-support-aside {
  background: var(--ash-surface);
  border-top: 1px solid var(--ash-border);
  border-bottom: 1px solid var(--ash-border);
  padding-block: 3rem;
  text-align: center;
}
.ash-support-aside h2 { margin-bottom: 0.5rem; }
.ash-support-aside > .container > p {
  color: var(--ash-muted);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2rem;
}



/* ── 15. HERO ─────────────────────────────────────────────── */
.ash-hero {
  position: relative;
  padding-block: 5rem 4rem;
  overflow: hidden;
}
.ash-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 40%, rgba(200,168,75,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 80% 60%, rgba(46,204,113,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.ash-hero__suits {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ash-hero__suit {
  position: absolute;
  font-size: clamp(3rem, 6vw, 8rem);
  opacity: 0.035;
  color: var(--ash-gold);
  user-select: none;
}
.ash-hero__suit:nth-child(1) { top: 10%; left: 5%; }
.ash-hero__suit:nth-child(2) { top: 60%; left: 2%; font-size: 4rem; }
.ash-hero__suit:nth-child(3) { top: 15%; right: 6%; }
.ash-hero__suit:nth-child(4) { top: 65%; right: 4%; font-size: 5rem; }
.ash-hero__suit:nth-child(5) { top: 40%; left: 15%; font-size: 3rem; }
.ash-hero__suit:nth-child(6) { top: 35%; right: 15%; font-size: 3.5rem; }

.ash-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.ash-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ash-gold);
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.ash-hero h1 {
  margin-bottom: 1.25rem;
}
.ash-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ash-muted);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2.25rem;
}
.ash-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.ash-hero__disclaimer {
  font-size: 0.72rem;
  color: var(--ash-muted);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.55;
  border-top: 1px solid var(--ash-border);
  padding-top: 1.5rem;
}

/* ── 16. FEATURES GRID ────────────────────────────────────── */
.feature-block {
  background: var(--ash-surface);
  border: 1px solid var(--ash-border);
  border-radius: 10px;
  padding: 1.75rem;
  text-align: center;
  transition: border-color var(--ash-transition);
}
.feature-block:hover { border-color: var(--ash-gold-dim); }
.feature-block__icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.feature-block h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature-block p { font-size: 0.875rem; color: var(--ash-muted); margin: 0; }

/* ── 17. RESPONSIBLE PLAY SECTION ─────────────────────────── */
.play-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.play-tip {
  background: var(--ash-surface);
  border: 1px solid var(--ash-border);
  border-radius: 8px;
  padding: 1.25rem;
}
.play-tip__num {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200,168,75,0.15);
  color: var(--ash-gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 28px;
  margin-bottom: 0.6rem;
}
.play-tip h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.play-tip p { font-size: 0.82rem; color: var(--ash-muted); margin: 0; }

/* ── 18. BREADCRUMB ───────────────────────────────────────── */
.ash-breadcrumb {
  padding-block: 1rem;
  border-bottom: 1px solid var(--ash-border);
  background: var(--ash-surface);
}
.ash-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--ash-muted);
  list-style: none;
}
.ash-breadcrumb li + li::before { content: '›'; margin-right: 0.4rem; color: var(--ash-border); }
.ash-breadcrumb a { color: var(--ash-muted); }
.ash-breadcrumb a:hover { color: var(--ash-gold); }
.ash-breadcrumb [aria-current="page"] { color: var(--ash-gold); }

/* ── 19. GAME WRAPPER ─────────────────────────────────────── */
.game-wrapper {
  background: var(--ash-surface);
  border: 1px solid var(--ash-border);
  border-radius: 12px;
  padding: 2rem;
  margin-block: 1.5rem;
}
.game-balance {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ash-gold);
  margin-bottom: 1.25rem;
}

/* ── 20. POLICY PAGE ──────────────────────────────────────── */
.policy-page h1 { margin-bottom: 0.5rem; }
.policy-page .policy-meta {
  font-size: 0.82rem;
  color: var(--ash-muted);
  margin-bottom: 2.5rem;
}
.policy-page h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--ash-gold);
  font-family: var(--ash-font-heading);
}
.policy-page h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--ash-text);
}
.policy-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--ash-muted);
  font-size: 0.95rem;
}
.policy-page ul li { margin-bottom: 0.35rem; }
.policy-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-block: 1rem;
}
.policy-page th {
  text-align: left;
  padding: 0.65rem 1rem;
  border: 1px solid var(--ash-border);
  background: var(--ash-surface-alt);
  color: var(--ash-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.policy-page td {
  padding: 0.65rem 1rem;
  border: 1px solid var(--ash-border);
  color: var(--ash-muted);
  vertical-align: top;
}

/* ── 21. COIN FLIP SPECIFIC ───────────────────────────────── */
.coin-container {
  perspective: 800px;
  width: 140px;
  height: 140px;
  margin: 1.5rem auto;
}
.coin {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.coin.flip-heads { transform: rotateY(1440deg); }
.coin.flip-tails  { transform: rotateY(1260deg); }
.coin__face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  backface-visibility: hidden;
  background: radial-gradient(circle at 35% 35%, var(--ash-gold-bright), var(--ash-gold));
  border: 4px solid var(--ash-gold-dim);
  box-shadow: inset 0 2px 8px rgba(255,255,255,0.2);
  font-weight: 700;
  color: #0D0D1A;
}
.coin__face--tails { transform: rotateY(180deg); }

/* ── 22. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ash-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .ash-nav, .ash-nav__dropdown { display: none; }
  .ash-hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .ash-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ash-footer__bottom { flex-direction: column; text-align: center; }
  .ash-hero { padding-block: 3.5rem 3rem; }
  .section { padding-block: 3rem; }
  .section--lg { padding-block: 4rem; }
}

@media (max-width: 480px) {
  .ash-topbar { gap: 0.75rem; }
  .ash-hero__ctas { flex-direction: column; align-items: stretch; }
  .ash-btn { width: 100%; justify-content: center; }
  .grid-4 { grid-template-columns: 1fr; }
  .play-tips, .org-cards { grid-template-columns: 1fr; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--ash-gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ash-bg); }
::-webkit-scrollbar-thumb { background: var(--ash-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ash-gold-dim); }

/* Section alternating bg */
.section--alt { background: var(--ash-surface); }
.section--dark { background: var(--ash-bg); }

/* Divider */
.ash-divider {
  border: none;
  border-top: 1px solid var(--ash-border);
  margin-block: 2rem;
}

/* Inline notice bar */
.ash-notice {
  background: rgba(200,168,75,0.06);
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: var(--ash-radius);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  color: var(--ash-muted);
  text-align: center;
  margin-block: 1rem;
}

/* Warning signs list */
.warning-signs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}
.warning-sign {
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--ash-muted);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.warning-sign::before {
  content: '⚠';
  color: var(--ash-crimson);
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* Utility: visually hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
