/* ArcticLodge — CASCADE FALLS — Prairie Wheat × Candy Kingdom */
/* CSS prefix: eq | Bootstrap 5.3.0 handles grid */

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --eq-bg-deep:       #1a0a2e;
  --eq-bg-mid:        #2d1b4e;
  --eq-bg-light:      #3d2860;
  --eq-bg-candy:      #fff0f8;
  --eq-bg-alt:        #f0e6ff;
  --eq-accent:        #ff6eb4;
  --eq-accent-hover:  #ff4da6;
  --eq-mint:          #42e2b8;
  --eq-yellow:        #ffd166;
  --eq-lavender:      #a78bfa;
  --eq-blue:          #48cae4;
  --eq-red:           #ff4757;
  --eq-text:          #fff8f0;
  --eq-text-dark:     #1e0030;
  --eq-text-muted:    #c8b8e8;
  --eq-ring:          #3d2860;
  --eq-warn:          #ff4757;
  --eq-display:       'Fredoka One', cursive, sans-serif;
  --eq-body:          'Nunito', sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--eq-body);
  font-size: 16px;
  background: var(--eq-bg-deep);
  color: var(--eq-text);
  line-height: 1.65;
}
a { color: var(--eq-accent); text-decoration: none; }
a:hover { color: var(--eq-accent-hover); }
img { max-width: 100%; height: auto; display: block; }
input, select, textarea, button { font-family: var(--eq-body); font-size: 16px; }

/* ─── Typography ────────────────────────────────────────────── */
.eq-display {
  font-family: var(--eq-display);
  letter-spacing: 0.5px;
}
h1, h2, h3, h4 { font-family: var(--eq-display); line-height: 1.2; }
.eq-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--eq-accent);
  display: block;
  margin-bottom: 8px;
}

/* ─── Topbar ─────────────────────────────────────────────────── */
.eq-topbar {
  background: var(--eq-warn);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 1100;
}
.eq-topbar a { color: #fff; text-decoration: underline; }

/* ─── Navbar ─────────────────────────────────────────────────── */
.eq-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--eq-bg-mid);
  border-bottom: 3px solid var(--eq-accent);
  box-shadow: 0 4px 20px rgba(255,110,180,0.25);
  height: 64px;
  display: flex;
  align-items: center;
}
.eq-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 16px;
}
.eq-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.eq-nav__logo img { height: 40px; width: auto; }
.eq-nav__links {
  display: none;
  list-style: none;
  gap: 24px;
  align-items: center;
}
.eq-nav__links a {
  color: var(--eq-text);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 4px;
  transition: color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.eq-nav__links a:hover { color: var(--eq-accent); }
.eq-nav__cta {
  background: var(--eq-accent);
  color: #fff !important;
  border-radius: 50px;
  padding: 10px 20px !important;
  border: 3px solid #fff;
  font-family: var(--eq-display);
  font-size: 14px !important;
}
.eq-nav__cta:hover { background: var(--eq-accent-hover) !important; color: #fff !important; }
.eq-burger {
  background: none;
  border: 2px solid var(--eq-accent);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.eq-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--eq-accent);
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .eq-nav__links { display: flex; }
  .eq-burger { display: none; }
}

/* ─── Mobile Nav ─────────────────────────────────────────────── */
.eq-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--eq-bg-mid);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.eq-mobile-nav.eq-open { display: flex; }
.eq-mobile-nav a {
  color: var(--eq-text);
  font-family: var(--eq-display);
  font-size: 28px;
  padding: 12px 24px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.eq-mobile-nav a:hover { color: var(--eq-accent); }
.eq-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--eq-accent);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.eq-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px;
  background-color: var(--eq-bg-deep);
}
.eq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,10,46,0.85) 0%, rgba(45,27,78,0.8) 100%);
  z-index: 1;
}
.eq-hero > * { position: relative; z-index: 2; }
.eq-hero__eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--eq-yellow);
  display: inline-block;
  background: rgba(255,209,102,0.15);
  border: 2px solid var(--eq-yellow);
  border-radius: 50px;
  padding: 4px 16px;
  margin-bottom: 16px;
}
.eq-hero h1 {
  font-family: var(--eq-display);
  font-size: 2.4rem;
  color: var(--eq-text);
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(255,110,180,0.5);
}
.eq-hero h1 span { color: var(--eq-accent); }
.eq-hero__sub {
  font-size: 1.1rem;
  color: var(--eq-text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.eq-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
@media (min-width: 768px) {
  .eq-hero { padding: 120px 0 80px; }
  .eq-hero h1 { font-size: 3.4rem; }
}

/* ─── Buttons ────────────────────────────────────────────────── */
.eq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--eq-display);
  font-size: 16px;
  font-weight: 700;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.eq-btn--primary {
  background: var(--eq-accent);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 6px 24px rgba(255,110,180,0.45), 4px 4px 0 rgba(0,0,0,0.2);
}
.eq-btn--primary:hover {
  background: var(--eq-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,110,180,0.55);
}
.eq-btn--outline {
  background: transparent;
  color: var(--eq-text);
  border-color: var(--eq-text-muted);
}
.eq-btn--outline:hover {
  border-color: var(--eq-accent);
  color: var(--eq-accent);
}
.eq-btn--mint {
  background: var(--eq-mint);
  color: var(--eq-text-dark);
  border-color: #fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}
.eq-btn--mint:hover {
  background: #36d4a8;
  color: var(--eq-text-dark);
  transform: translateY(-2px);
}

/* ─── Section layouts ────────────────────────────────────────── */
.eq-section { padding: 56px 0; }
.eq-section--dark { background: var(--eq-bg-deep); }
.eq-section--mid { background: var(--eq-bg-mid); }
.eq-section--candy { background: var(--eq-bg-candy); color: var(--eq-text-dark); }
.eq-section--alt { background: var(--eq-bg-alt); color: var(--eq-text-dark); }
@media (min-width: 768px) { .eq-section { padding: 96px 0; } }

.eq-section-title {
  font-family: var(--eq-display);
  font-size: 2rem;
  margin-bottom: 12px;
}
.eq-section-title--dark { color: var(--eq-text); }
.eq-section-title--candy { color: var(--eq-text-dark); }
.eq-section-lead {
  font-size: 1.05rem;
  color: var(--eq-text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
}
.eq-section-lead--candy { color: #5a3e6e; }

/* ─── Feature cards ──────────────────────────────────────────── */
.eq-features-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .eq-features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .eq-features-grid { grid-template-columns: repeat(3, 1fr); } }

.eq-feat-card {
  background: var(--eq-bg-light);
  border-radius: 20px;
  padding: 28px 24px;
  border: 3px solid var(--eq-ring);
  box-shadow: 4px 4px 0 rgba(255,110,180,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.eq-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 8px 0 rgba(255,110,180,0.35);
}
.eq-feat-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--eq-accent), var(--eq-lavender));
}
.eq-feat-card h3 {
  font-family: var(--eq-display);
  font-size: 1.2rem;
  color: var(--eq-text);
  margin-bottom: 8px;
}
.eq-feat-card p { font-size: 0.95rem; color: var(--eq-text-muted); }

/* ─── About strip ────────────────────────────────────────────── */
.eq-about-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 992px) { .eq-about-grid { grid-template-columns: 1fr 1fr; } }
.eq-about__img { border-radius: 20px; overflow: hidden; border: 4px solid var(--eq-accent); box-shadow: 8px 8px 0 var(--eq-lavender); }
.eq-about__img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* ─── Platform extended (3-fact strip) ───────────────────────── */
.eq-platform-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .eq-platform-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .eq-platform-grid { grid-template-columns: 1fr 1fr 1fr; } }
.eq-platform-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  border: 3px solid var(--eq-ring);
}
.eq-platform-card__num {
  font-family: var(--eq-display);
  font-size: 3.5rem;
  color: var(--eq-yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.eq-platform-card h4 {
  font-family: var(--eq-display);
  font-size: 1.2rem;
  color: var(--eq-text);
  margin-bottom: 8px;
}
.eq-platform-card p { font-size: 0.9rem; color: var(--eq-text-muted); }

/* ─── Why Us ─────────────────────────────────────────────────── */
.eq-why-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .eq-why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .eq-why-grid { grid-template-columns: 1fr 1fr 1fr; } }
.eq-why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  border: 2px solid var(--eq-ring);
}
.eq-why-card__num {
  font-family: var(--eq-display);
  font-size: 2rem;
  color: var(--eq-accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.eq-why-card h4 {
  font-family: var(--eq-display);
  font-size: 1.1rem;
  color: var(--eq-text);
  margin-bottom: 6px;
}
.eq-why-card p { font-size: 0.9rem; color: var(--eq-text-muted); }

/* ─── Updates section ────────────────────────────────────────── */
.eq-updates-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .eq-updates-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .eq-updates-grid { grid-template-columns: repeat(4, 1fr); } }
.eq-update-card {
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--eq-ring);
  background: var(--eq-bg-mid);
}
.eq-update-card__img { width: 100%; height: 160px; object-fit: cover; }
.eq-update-card__body { padding: 16px; }
.eq-update-card__date { font-size: 11px; color: var(--eq-accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.eq-update-card h4 { font-family: var(--eq-display); font-size: 1rem; color: var(--eq-text); margin-bottom: 6px; }
.eq-update-card p { font-size: 0.85rem; color: var(--eq-text-muted); }

/* ─── FAQ ────────────────────────────────────────────────────── */
.eq-faq { max-width: 720px; margin: 0 auto; }
.eq-faq-item {
  border-bottom: 2px solid var(--eq-ring);
  padding: 20px 0;
}
.eq-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--eq-display);
  font-size: 1.05rem;
  color: var(--eq-text);
  min-height: 44px;
}
.eq-faq-q::after {
  content: "+";
  font-size: 24px;
  color: var(--eq-accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.eq-faq-item.eq-open .eq-faq-q::after { transform: rotate(45deg); }
.eq-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.95rem;
  color: var(--eq-text-muted);
  padding: 0;
}
.eq-faq-item.eq-open .eq-faq-a { max-height: 600px; padding-top: 12px; }

/* ─── Context / general strip ────────────────────────────────── */
.eq-context-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 992px) { .eq-context-grid { grid-template-columns: 1fr 1fr 1fr; } }
.eq-context-card {
  padding: 24px;
  background: var(--eq-bg-light);
  border-radius: 16px;
  border: 2px solid var(--eq-ring);
}
.eq-context-card h4 { font-family: var(--eq-display); font-size: 1.1rem; color: var(--eq-yellow); margin-bottom: 10px; }
.eq-context-card p { font-size: 0.9rem; color: var(--eq-text-muted); }

/* ─── Responsible gambling ───────────────────────────────────── */
.eq-rg {
  background: linear-gradient(135deg, #2d1b4e 0%, #1a0a2e 100%);
  border-top: 4px solid var(--eq-warn);
  border-bottom: 4px solid var(--eq-warn);
  padding: 40px 0;
}
.eq-rg-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.eq-rg h2 { font-family: var(--eq-display); font-size: 1.8rem; color: var(--eq-warn); margin-bottom: 12px; }
.eq-rg p { color: var(--eq-text-muted); margin-bottom: 16px; }
.eq-rg a { color: var(--eq-yellow); text-decoration: underline; }
.eq-rg__18 {
  display: inline-block;
  background: var(--eq-warn);
  color: #fff;
  font-family: var(--eq-display);
  font-size: 1.5rem;
  padding: 6px 20px;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.eq-footer {
  background: #0f0520;
  color: var(--eq-text-muted);
  padding: 48px 0 0;
}
.eq-footer__cols { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 576px) { .eq-footer__cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .eq-footer__cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.eq-footer h4 { font-family: var(--eq-display); font-size: 1rem; color: var(--eq-text); margin-bottom: 16px; }
.eq-footer ul { list-style: none; }
.eq-footer ul li { margin-bottom: 8px; }
.eq-footer ul a { color: var(--eq-text-muted); font-size: 0.9rem; min-height: 44px; display: inline-flex; align-items: center; }
.eq-footer ul a:hover { color: var(--eq-accent); }
.eq-footer__desc { font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }

.eq-footer__rg {
  border-top: 2px solid var(--eq-ring);
  margin-top: 40px;
  padding: 32px 0;
}
.eq-footer-rg-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .eq-footer-rg-grid { grid-template-columns: 1fr 1fr; } }
.eq-footer-rg-col h5 { font-family: var(--eq-display); font-size: 0.95rem; color: var(--eq-accent); margin-bottom: 10px; }
.eq-footer-rg-col p { font-size: 0.85rem; color: var(--eq-text-muted); line-height: 1.6; }

.eq-footer-regulators {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 0;
  border-top: 2px solid var(--eq-ring);
}
.eq-footer-regulators a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
}
.eq-footer-regulators img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}
.eq-reg-logo-frame {
  background: var(--eq-bg-mid);
  border-radius: 8px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
}
.eq-footer__bottom {
  border-top: 2px solid var(--eq-ring);
  padding: 20px 0;
  text-align: center;
}
.eq-footer__disclaimer { font-size: 0.78rem; color: #8870b0; max-width: 900px; margin: 0 auto 12px; line-height: 1.7; }
.eq-footer__copyright { font-size: 0.8rem; color: #6a5090; }

/* ─── Resp topbar strip ──────────────────────────────────────── */
.eq-resp-topbar {
  background: #ff4757;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 6px 16px;
  letter-spacing: 1px;
}
.eq-resp-topbar a { color: #ffd166; text-decoration: underline; }
.eq-footer-resp-strip {
  background: rgba(255,71,87,0.1);
  border-top: 2px solid var(--eq-warn);
  padding: 12px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #c898a8;
}

/* ─── Age gate overlay ───────────────────────────────────────── */
.eq-age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,5,32,0.97);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.eq-age-overlay.eq-visible { display: flex; }
.eq-gate__card {
  background: var(--eq-bg-mid);
  border: 4px solid var(--eq-accent);
  border-radius: 24px;
  padding: 40px 28px;
  max-width: min(480px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  text-align: center;
  box-shadow: 0 0 80px rgba(255,110,180,0.4);
}
.eq-gate__card h2 { font-family: var(--eq-display); font-size: 2rem; color: var(--eq-accent); margin-bottom: 12px; }
.eq-gate__card p { font-size: 0.95rem; color: var(--eq-text-muted); margin-bottom: 24px; }
.eq-gate__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Cookie banner ──────────────────────────────────────────── */
.eq-cookies {
  display: none;
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: var(--eq-bg-mid);
  border: 3px solid var(--eq-accent);
  border-radius: 16px;
  padding: 16px 20px;
  z-index: 8000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
@media (min-width: 600px) {
  .eq-cookies {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 380px;
    padding: 24px;
  }
}
.eq-cookies__text { font-size: 0.9rem; color: var(--eq-text-muted); margin-bottom: 16px; line-height: 1.5; }
.eq-cookies__text a { color: var(--eq-accent); }
.eq-cookies__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.eq-reopen-pill {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  background: var(--eq-accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-family: var(--eq-body);
  cursor: pointer;
  z-index: 7000;
  min-height: 44px;
  box-shadow: 0 4px 16px rgba(255,110,180,0.4);
}

/* ─── Avatar (replaces people photos) ───────────────────────── */
.eq-avatar {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--eq-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50%;
  text-transform: uppercase;
}
.eq-avatar--rounded-sq { border-radius: 16%; }
.eq-avatar--sharp-sq   { border-radius: 0; }
.eq-avatar--circle     { border-radius: 50%; }
.eq-avatar--lg { width: 96px; height: 96px; font-size: 32px; }
.eq-avatar--sm { width: 40px; height: 40px; font-size: 14px; }

/* ─── Game widget (CASCADE FALLS) ────────────────────────────── */
/* game-ui */
.eq-game-section {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  background-color: var(--eq-bg-deep);
}
.eq-game-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,10,46,0.9) 0%, rgba(45,27,78,0.95) 100%);
  z-index: 1;
}
.eq-game-section > * { position: relative; z-index: 2; }

.eq-game-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 16px;
}
.eq-game-head { text-align: center; margin-bottom: 24px; }
.eq-game-head h1 {
  font-family: var(--eq-display);
  font-size: 2.2rem;
  color: var(--eq-text);
  margin-bottom: 8px;
}
.eq-game-head span { color: var(--eq-accent); }
.eq-game-panel {
  background: linear-gradient(145deg, #2d1b4e, #1a0a2e);
  border: 4px solid var(--eq-accent);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 0 60px rgba(255,110,180,0.3), inset 0 0 40px rgba(167,139,250,0.1);
}
.eq-game-scorebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  border: 2px solid var(--eq-ring);
  flex-wrap: wrap;
  gap: 12px;
}
.eq-game-stat { text-align: center; }
.eq-game-stat label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--eq-text-muted); }
.eq-game-stat span { font-family: var(--eq-display); font-size: 1.4rem; color: var(--eq-yellow); }
.eq-game-stat--mult span { color: var(--eq-mint); }

/* game-ui */
.eq-grid-outer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.eq-cell {
  aspect-ratio: 1;
  border-radius: 12px;
  background: var(--eq-bg-mid);
  color: var(--eq-accent);
  border: 2px solid var(--eq-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.15s;
  position: relative;
}
.eq-cell img { width: 80%; height: 80%; object-fit: contain; transition: transform 0.3s; }
.eq-cell.eq-win { border-color: var(--eq-yellow); box-shadow: 0 0 20px rgba(255,209,102,0.7); animation: eq-pulse 0.6s ease; }
.eq-cell.eq-explode { animation: eq-explode 0.4s ease forwards; }
.eq-cell.eq-drop { animation: eq-drop 0.35s ease; }

@keyframes eq-pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes eq-explode {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(0); opacity: 0; background: radial-gradient(circle, var(--eq-yellow), transparent); }
}
@keyframes eq-drop {
  0% { transform: translateY(-60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.eq-win-flash {
  text-align: center;
  min-height: 48px;
  font-family: var(--eq-display);
  font-size: 1.5rem;
  color: var(--eq-yellow);
  margin-bottom: 12px;
  transition: all 0.3s;
}
.eq-game-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.eq-paytable { margin-top: 24px; }
.eq-paytable h4 { font-family: var(--eq-display); font-size: 1rem; color: var(--eq-text-muted); margin-bottom: 12px; text-align: center; }
.eq-paytable-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 6px;
  background: var(--eq-bg-mid);
}
.eq-paytable-row img { width: 36px; height: 36px; object-fit: contain; }
.eq-paytable-row span { flex: 1; font-size: 0.9rem; color: var(--eq-text-muted); }
.eq-paytable-row strong { color: var(--eq-yellow); font-family: var(--eq-display); }
.eq-mult-chain { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: 12px; }
.eq-mult-step {
  padding: 4px 10px;
  border-radius: 8px;
  font-family: var(--eq-display);
  font-size: 0.85rem;
  background: rgba(255,255,255,0.06);
  color: var(--eq-text-muted);
  border: 2px solid var(--eq-ring);
  transition: all 0.3s;
}
.eq-mult-step.eq-active { background: var(--eq-yellow); color: #1a0a2e; border-color: var(--eq-yellow); }

/* ─── Sub-page hero ──────────────────────────────────────────── */
.eq-sub-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 48px;
  background-color: var(--eq-bg-deep);
}
.eq-sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,10,46,0.9) 50%, rgba(26,10,46,0.6) 100%);
  z-index: 1;
}
.eq-sub-hero > * { position: relative; z-index: 2; }
.eq-sub-hero h1 { font-family: var(--eq-display); font-size: 2.2rem; color: var(--eq-text); }
.eq-sub-hero p { color: var(--eq-text-muted); font-size: 1.05rem; margin-top: 12px; max-width: 640px; }
@media (min-width: 768px) { .eq-sub-hero { padding: 100px 0 64px; } .eq-sub-hero h1 { font-size: 3rem; } }

/* ─── Legal page content ─────────────────────────────────────── */
.eq-sub-h2 { font-family: var(--eq-display); font-size: 1.4rem; color: var(--eq-accent); margin: 28px 0 10px; }
.eq-sub-p { font-size: 0.97rem; color: var(--eq-text-muted); margin-bottom: 14px; line-height: 1.75; }
.eq-sub-p a { color: var(--eq-yellow); }
.eq-sub-ul { list-style: disc; padding-left: 20px; margin-bottom: 14px; }
.eq-sub-ul li { font-size: 0.95rem; color: var(--eq-text-muted); margin-bottom: 6px; }

/* ─── About page team cards ──────────────────────────────────── */
.eq-team-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 576px) { .eq-team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .eq-team-grid { grid-template-columns: repeat(4, 1fr); } }
.eq-team-card { text-align: center; padding: 24px 16px; }
.eq-team-card h4 { font-family: var(--eq-display); font-size: 1rem; color: var(--eq-text); margin-top: 12px; }
.eq-team-card p { font-size: 0.85rem; color: var(--eq-text-muted); }

/* ─── Responsible page ───────────────────────────────────────── */
.eq-help-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 576px) { .eq-help-grid { grid-template-columns: 1fr 1fr; } }
.eq-help-card {
  padding: 24px;
  background: var(--eq-bg-light);
  border-radius: 16px;
  border: 2px solid var(--eq-ring);
}
.eq-help-card h4 { font-family: var(--eq-display); font-size: 1.1rem; color: var(--eq-accent); margin-bottom: 10px; }
.eq-help-card p, .eq-help-card a { font-size: 0.9rem; color: var(--eq-text-muted); line-height: 1.6; }
.eq-help-card a { color: var(--eq-yellow); text-decoration: underline; display: block; margin-top: 8px; }

/* ─── Teaser (index.php game preview) ────────────────────────── */
.eq-teaser {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(145deg, #2d1b4e, #1a0a2e);
  border: 4px solid var(--eq-accent);
  border-radius: 24px;
  box-shadow: 0 0 60px rgba(255,110,180,0.25);
  margin: 0 auto;
}
.eq-teaser h3 { font-family: var(--eq-display); font-size: 1.8rem; color: var(--eq-text); margin-bottom: 10px; }
.eq-teaser p { color: var(--eq-text-muted); margin-bottom: 24px; }
.eq-teaser__symbols {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.eq-teaser__symbols img { width: 56px; height: 56px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(255,110,180,0.5)); }

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes eq-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.eq-float { animation: eq-float 3s ease-in-out infinite; }

/* ─── Shared inner-page helpers ──────────────────────────────── */
.eq-btn-play {
  background: var(--eq-accent);
  color: #fff;
  font-family: var(--eq-display);
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  min-height: 44px;
  transition: background 0.2s;
}
.eq-btn-play:hover { background: var(--eq-accent-hover); color: #fff; }
.eq-nav-link { color: var(--eq-text-muted) !important; font-family: var(--eq-display); transition: color 0.2s; }
.eq-nav-link:hover, .eq-nav-active { color: var(--eq-accent) !important; }
.eq-toggler { border: 1px solid var(--eq-ring); color: var(--eq-text); }
.eq-body-text { color: var(--eq-text-muted); line-height: 1.75; margin-bottom: 1rem; }
.eq-icon-accent { color: var(--eq-accent); }
.eq-page-title { font-family: var(--eq-display); font-size: clamp(2rem,5vw,3.2rem); color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.eq-page-sub { font-size: 1.1rem; color: var(--eq-yellow); margin-top: 8px; }
.eq-section--light { background: var(--eq-bg-candy); color: var(--eq-text-dark); }
.eq-section--light .eq-section-title,
.eq-section--light h2,
.eq-section--light h3 { color: var(--eq-text-dark); }
.eq-section--light .eq-body-text { color: #4a3060; }
.eq-section--light p { color: #4a3060; }
.eq-section--light a { color: var(--eq-accent); }
.eq-resp-link { color: var(--eq-yellow); font-size: 0.85rem; font-weight: 700; }
.eq-resp-link--active { text-decoration: underline; }

/* ─── Logo frame (dark wrapper for light SVGs) ───────────────── */
.eq-logo-frame {
  background: var(--eq-bg-mid);
  border-radius: 10px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.eq-logo-frame--lg { padding: 10px 14px; }
.eq-logo-frame img { object-fit: contain; }
.eq-rg-logos { margin-top: 8px; }

/* ─── Footer extras ──────────────────────────────────────────── */
.eq-footer-desc { font-size: 0.9rem; color: var(--eq-text-muted); line-height: 1.6; }
.eq-footer-disclaimer { font-size: 0.78rem; color: var(--eq-text-muted); opacity: 0.75; margin-top: 10px; line-height: 1.5; }
.eq-footer-heading { font-family: var(--eq-display); font-size: 1rem; color: var(--eq-yellow); margin-bottom: 12px; }
.eq-footer-list { list-style: none; padding: 0; margin: 0; }
.eq-footer-list li { margin-bottom: 8px; }
.eq-footer-link { color: var(--eq-text-muted); font-size: 0.9rem; transition: color 0.2s; }
.eq-footer-link:hover { color: var(--eq-accent); }
.eq-footer-age { font-family: var(--eq-display); font-size: 1.8rem; color: var(--eq-accent); font-weight: 900; }
.eq-footer-bottom { border-top: 1px solid var(--eq-ring); font-size: 0.82rem; color: var(--eq-text-muted); opacity: 0.7; }

/* ─── About hero ─────────────────────────────────────────────── */
.eq-about-hero {
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.eq-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,10,46,0.65), rgba(26,10,46,0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 60px 20px;
}

/* ─── Legal hero ─────────────────────────────────────────────── */
.eq-legal-hero {
  position: relative;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.eq-legal-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,10,46,0.7), rgba(26,10,46,0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px 20px;
}

/* ─── Legal body ─────────────────────────────────────────────── */
.eq-legal-body { color: var(--eq-text-dark); }
.eq-legal-body h2 { font-family: var(--eq-display); font-size: 1.4rem; color: var(--eq-text-dark); margin: 2rem 0 0.75rem; border-bottom: 2px solid var(--eq-accent); padding-bottom: 4px; }
.eq-legal-body h3 { font-family: var(--eq-display); font-size: 1.1rem; color: var(--eq-text-dark); margin: 1.25rem 0 0.5rem; }
.eq-legal-body p { margin-bottom: 0.9rem; line-height: 1.75; color: #4a3060; }
.eq-legal-body ul, .eq-legal-body ol { margin-bottom: 0.9rem; padding-left: 1.5rem; color: #4a3060; }
.eq-legal-body li { margin-bottom: 0.4rem; line-height: 1.7; }
.eq-legal-body a { color: var(--eq-accent); }
.eq-legal-body code { background: #e8d8f8; padding: 1px 5px; border-radius: 4px; font-size: 0.88em; color: #5a2080; }
.eq-table-wrapper { overflow-x: auto; margin-bottom: 1.5rem; }
.eq-cookie-table { font-size: 0.88rem; background: #fff; color: var(--eq-text-dark); }
.eq-cookie-table th { background: var(--eq-bg-mid); color: var(--eq-text); font-family: var(--eq-display); }
.eq-cookie-table td { vertical-align: top; }

/* ─── About page components ──────────────────────────────────── */
.eq-mission-card {
  background: var(--eq-bg-mid);
  border-radius: 20px;
  border: 2px solid var(--eq-ring);
}
.eq-value-list { list-style: none; padding: 0; margin: 0; }
.eq-value-list li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 12px; align-items: flex-start; color: var(--eq-text); }
.eq-value-list li:last-child { border-bottom: none; }
.eq-story-card { background: var(--eq-bg-mid); border-radius: 16px; border: 2px solid var(--eq-ring); }
.eq-story-year { font-family: var(--eq-display); font-size: 2rem; color: var(--eq-accent); margin-bottom: 10px; }
.eq-story-card p { font-size: 0.9rem; color: var(--eq-text-muted); }
.eq-team-card { background: #fff; border-radius: 20px; box-shadow: 0 4px 20px rgba(167,139,250,0.12); }
.eq-team-name { font-family: var(--eq-display); font-size: 1.1rem; color: var(--eq-text-dark); margin-bottom: 2px; }
.eq-team-role { font-size: 0.85rem; color: var(--eq-accent); font-weight: 700; margin-bottom: 10px; }
.eq-team-bio { font-size: 0.88rem; color: #4a3060; line-height: 1.6; }
.eq-value-block { background: var(--eq-bg-mid); border-radius: 16px; border: 2px solid var(--eq-ring); }
.eq-value-title { font-family: var(--eq-display); font-size: 1.1rem; color: var(--eq-text); margin-bottom: 10px; }
.eq-contact-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.eq-contact-item { text-align: center; }
.eq-contact-item p { margin-bottom: 4px; color: var(--eq-text); }
.eq-contact-item a { color: var(--eq-accent); }
@media (min-width: 768px) {
  .eq-contact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Play Responsibly page ──────────────────────────────────── */
.eq-rg-page-hero {
  position: relative;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.eq-rg-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,10,46,0.55), rgba(26,10,46,0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 60px 20px;
}
.eq-rg-no-money { background: var(--eq-bg-mid); }
.eq-rg-alert { background: rgba(255,110,180,0.12); border: 2px solid var(--eq-accent); border-radius: 16px; text-align: left; color: var(--eq-text); }
.eq-rg-alert i { color: var(--eq-accent); }
.eq-selfcheck-grid { display: grid; gap: 20px; }
.eq-selfcheck-item { display: flex; gap: 16px; align-items: flex-start; background: var(--eq-bg-mid); border-radius: 14px; padding: 16px; border: 2px solid var(--eq-ring); }
.eq-selfcheck-icon { width: 44px; height: 44px; min-width: 44px; display: flex; align-items: center; justify-content: center; background: var(--eq-accent); border-radius: 50%; font-size: 1.1rem; color: #fff; }
.eq-selfcheck-item p { color: var(--eq-text-muted); }
.eq-selfcheck-item p.fw-bold { color: var(--eq-text); }
.eq-habit-card { background: var(--eq-bg-mid); border-radius: 18px; border: 2px solid var(--eq-ring); }
.eq-habit-card p { color: var(--eq-text-muted); font-size: 0.92rem; }
.eq-habit-title { font-family: var(--eq-display); font-size: 1.05rem; color: var(--eq-text); margin-bottom: 8px; }
.eq-org-card { background: var(--eq-bg-mid); border-radius: 20px; border: 2px solid var(--eq-ring); }
.eq-org-name { font-family: var(--eq-display); font-size: 1.05rem; color: var(--eq-text); }
.eq-org-country { font-size: 0.8rem; color: var(--eq-text-muted); }
.eq-org-card p { color: var(--eq-text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 10px; }
.eq-org-contacts { list-style: none; padding: 0; margin: 0; }
.eq-org-contacts li { font-size: 0.88rem; color: var(--eq-yellow); margin-bottom: 6px; }
.eq-province-card { background: var(--eq-bg-mid); border-radius: 14px; border: 1px solid var(--eq-ring); }
.eq-province-name { font-family: var(--eq-display); font-size: 1rem; color: var(--eq-accent); margin-bottom: 4px; }
.eq-province-phone { font-family: var(--eq-display); color: var(--eq-yellow); font-size: 0.95rem; margin: 0; }
.eq-province-card p:not(.eq-province-name):not(.eq-province-phone) { font-size: 0.82rem; color: var(--eq-text-muted); margin-bottom: 2px; }

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