/* CedarChoice — Prairie Wheat (Egyptian Theme) — prefix: eg- */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  --eg-bg-deep:     #1a0e00;
  --eg-bg-mid:      #2a1c08;
  --eg-bg-card:     #321a06;
  --eg-bg-alt:      #0e0700;
  --eg-text:        #f4f0e0;
  --eg-text-muted:  #c8b888;
  --eg-accent:      #d4b46a;
  --eg-accent-lit:  #f0d08a;
  --eg-gold:        #f0c840;
  --eg-turq:        #30c8b0;
  --eg-turq-dark:   #187860;
  --eg-sky:         #7494b1;
  --eg-warn:        #c84028;
  --eg-border:      #3c2a10;
  --eg-display:     'Cormorant Garamond', 'Palatino Linotype', serif;
  --eg-body:        'Source Sans 3', 'Lato', sans-serif;
  --eg-mono:        'Orbitron', 'Share Tech Mono', monospace;
  --eg-radius:      10px;
  --eg-radius-lg:   18px;
  --eg-shadow:      0 4px 24px rgba(0,0,0,.6);
  --eg-shadow-gold: 0 0 24px rgba(212,180,106,.35);
  --eg-glow-turq:   0 0 20px rgba(48,200,176,.4);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--eg-bg-deep);
  color: var(--eg-text);
  font-family: var(--eg-body);
  font-size: 17px;
  line-height: 1.7;
  min-height: 100vh;
}
a { color: var(--eg-accent); text-decoration: none; }
a:hover { color: var(--eg-accent-lit); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--eg-display); line-height: 1.25; color: var(--eg-text); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: 0.5px; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 600; }
p { margin-bottom: 1rem; }

/* ============================================================
   3. TOP-BAR
   ============================================================ */
.eg-topbar {
  background: var(--eg-warn);
  color: #fff;
  text-align: center;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  z-index: 200;
  position: relative;
}
.eg-topbar a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ============================================================
   4. NAV
   ============================================================ */
.eg-sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 180;
  transition: background 0.25s;
}
.eg-sticky-wrap.eg-is-sticky { background: var(--eg-bg-alt); box-shadow: 0 2px 12px rgba(0,0,0,.7); }
.eg-nav {
  background: rgba(26,14,0,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid var(--eg-border);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.eg-nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.eg-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.eg-nav-logo img { height: 36px; width: auto; }
.eg-nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}
.eg-nav-links a {
  color: var(--eg-text-muted);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: color 0.2s;
  text-decoration: none;
}
.eg-nav-links a:hover { color: var(--eg-accent); }
.eg-nav-cta {
  display: none;
  background: var(--eg-accent);
  color: var(--eg-bg-deep) !important;
  padding: 9px 22px;
  border-radius: var(--eg-radius);
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none !important;
}
.eg-nav-cta:hover { background: var(--eg-accent-lit); transform: translateY(-1px); }
.eg-burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.eg-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--eg-accent);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile nav drop */
.eg-mob-drop {
  display: none;
  background: var(--eg-bg-alt);
  border-bottom: 1.5px solid var(--eg-border);
  padding: 16px 20px 20px;
}
.eg-mob-drop a {
  display: block;
  padding: 12px 0;
  color: var(--eg-text-muted);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--eg-border);
  text-decoration: none;
}
.eg-mob-drop a:last-child { border-bottom: none; }
.eg-mob-drop a:hover { color: var(--eg-accent); }

@media (min-width: 992px) {
  .eg-nav-links { display: flex; }
  .eg-nav-cta { display: block; }
  .eg-burger { display: none; }
}

/* ============================================================
   5. HERO — homepage (no slot on homepage per user spec)
   ============================================================ */
.eg-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--eg-bg-deep);
}
.eg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,14,0,.75) 0%, rgba(10,6,0,.55) 50%, rgba(26,14,0,.82) 100%);
  z-index: 1;
}
.eg-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 24px 80px;
  text-align: center;
}
.eg-hero-eyebrow {
  display: inline-block;
  background: var(--eg-turq-dark);
  color: var(--eg-turq);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.eg-hero h1 {
  color: var(--eg-accent-lit);
  margin-bottom: 20px;
  text-shadow: 0 2px 18px rgba(212,180,106,.4);
}
.eg-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--eg-text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
}
.eg-hero-cta {
  display: inline-block;
  background: var(--eg-gold);
  color: var(--eg-bg-deep);
  padding: 18px 54px;
  border-radius: var(--eg-radius);
  font-family: var(--eg-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 32px rgba(240,200,64,.45);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none !important;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
}
.eg-hero-cta:hover {
  background: var(--eg-accent-lit);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(240,200,64,.55);
  color: var(--eg-bg-deep);
}
/* Egyptian hieroglyph decoration strip */
.eg-hero-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(90deg, var(--eg-turq-dark) 0%, var(--eg-bg-mid) 50%, var(--eg-turq-dark) 100%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0.7;
  font-size: 20px;
  letter-spacing: 6px;
  color: var(--eg-gold);
}

/* ============================================================
   6. FEATURES SECTION
   ============================================================ */
.eg-features {
  padding: 80px 0 60px;
  background: var(--eg-bg-mid);
}
.eg-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.eg-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--eg-turq);
  margin-bottom: 12px;
}
.eg-section-head h2 { color: var(--eg-accent); margin-bottom: 12px; }
.eg-section-head p { color: var(--eg-text-muted); max-width: 560px; margin: 0 auto; }
.eg-feat-card {
  background: var(--eg-bg-card);
  border: 1.5px solid var(--eg-border);
  border-radius: var(--eg-radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  height: 100%;
}
.eg-feat-card:hover { transform: translateY(-4px); box-shadow: var(--eg-shadow-gold); border-color: var(--eg-accent); }
.eg-feat-icon {
  width: 60px;
  height: 60px;
  background: var(--eg-bg-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  border: 2px solid var(--eg-border);
  color: var(--eg-gold);
}
.eg-feat-card h3 { color: var(--eg-accent); margin-bottom: 10px; }
.eg-feat-card p { color: var(--eg-text-muted); font-size: 15px; margin-bottom: 0; }

/* ============================================================
   7. ABOUT STRIP
   ============================================================ */
.eg-about-strip {
  padding: 80px 0;
  background: var(--eg-bg-deep);
  position: relative;
  overflow: hidden;
}
.eg-about-strip::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, transparent, var(--eg-gold), transparent);
}
.eg-about-img {
  border-radius: var(--eg-radius-lg);
  overflow: hidden;
  box-shadow: var(--eg-shadow);
}
.eg-about-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.eg-about-text { padding: 20px 0; }
.eg-about-text h2 { color: var(--eg-accent); margin-bottom: 18px; }
.eg-about-text p { color: var(--eg-text-muted); }
.eg-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--eg-bg-card);
  border: 1.5px solid var(--eg-turq-dark);
  color: var(--eg-turq);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ============================================================
   8. PLATFORM EXTENDED
   ============================================================ */
.eg-platform {
  padding: 80px 0;
  background: var(--eg-bg-mid);
}
.eg-platform-facts {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.eg-fact {
  text-align: center;
  min-width: 120px;
}
.eg-fact-num {
  font-family: var(--eg-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--eg-gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.eg-fact-label { font-size: 13px; color: var(--eg-text-muted); text-transform: uppercase; letter-spacing: 1px; }
.eg-platform-cols { gap: 32px; }
.eg-platform-col h3 { color: var(--eg-accent); margin-bottom: 14px; }
.eg-platform-col p, .eg-platform-col li { color: var(--eg-text-muted); font-size: 15px; }
.eg-platform-col ul { padding-left: 0; }
.eg-platform-col li { padding: 6px 0; border-bottom: 1px solid var(--eg-border); }
.eg-platform-col li::before { content: "◆ "; color: var(--eg-turq); font-size: 10px; }

/* ============================================================
   9. WHY US
   ============================================================ */
.eg-whyus {
  padding: 80px 0;
  background: var(--eg-bg-deep);
}
.eg-why-card {
  background: var(--eg-bg-card);
  border: 1.5px solid var(--eg-border);
  border-radius: var(--eg-radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: 100%;
}
.eg-why-card:hover { border-color: var(--eg-turq-dark); box-shadow: var(--eg-glow-turq); }
.eg-why-num {
  font-family: var(--eg-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--eg-accent);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  right: 18px;
  line-height: 1;
}
.eg-why-card h3 { color: var(--eg-accent-lit); margin-bottom: 10px; font-size: 1.1rem; }
.eg-why-card p { color: var(--eg-text-muted); font-size: 14px; margin-bottom: 0; }

/* ============================================================
   10. UPDATES
   ============================================================ */
.eg-updates {
  padding: 80px 0;
  background: var(--eg-bg-mid);
}
.eg-upd-card {
  background: var(--eg-bg-card);
  border: 1.5px solid var(--eg-border);
  border-radius: var(--eg-radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.eg-upd-card:hover { transform: translateY(-3px); box-shadow: var(--eg-shadow); }
.eg-upd-img {
  height: 180px;
  overflow: hidden;
  background: var(--eg-bg-alt);
  position: relative;
}
.eg-upd-img img { width: 100%; height: 100%; object-fit: cover; }
.eg-upd-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--eg-turq-dark);
  color: var(--eg-turq);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.eg-upd-body { padding: 20px; }
.eg-upd-date { font-size: 12px; color: var(--eg-text-muted); margin-bottom: 8px; }
.eg-upd-card h3 { font-size: 1rem; color: var(--eg-accent); margin-bottom: 8px; }
.eg-upd-card p { font-size: 14px; color: var(--eg-text-muted); margin-bottom: 0; }

/* ============================================================
   11. FAQ
   ============================================================ */
.eg-faq {
  padding: 80px 0;
  background: var(--eg-bg-deep);
}
.eg-faq-list { max-width: 760px; margin: 0 auto; }
.eg-faq-item {
  border-bottom: 1.5px solid var(--eg-border);
}
.eg-faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: var(--eg-text);
  font-family: var(--eg-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  min-height: 64px;
}
.eg-faq-q:hover { color: var(--eg-accent); }
.eg-faq-arr { color: var(--eg-accent); font-size: 16px; flex-shrink: 0; }
.eg-faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.eg-faq-ans-inner { padding: 0 0 20px; color: var(--eg-text-muted); font-size: 15px; line-height: 1.7; }
.eg-faq-item.eg-faq-open .eg-faq-arr { transform: rotate(45deg); }

/* ============================================================
   12. GENERAL CONTEXT STRIP
   ============================================================ */
.eg-context {
  padding: 80px 0 60px;
  background: var(--eg-bg-mid);
}
.eg-context-col h3 { color: var(--eg-accent); margin-bottom: 14px; }
.eg-context-col p { color: var(--eg-text-muted); font-size: 15px; }
.eg-context-col ul { color: var(--eg-text-muted); font-size: 15px; padding-left: 0; }
.eg-context-col li { padding: 5px 0; }
.eg-context-col li::before { content: "▸ "; color: var(--eg-turq); }
.eg-context-bottom {
  background: var(--eg-bg-alt);
  border: 1px solid var(--eg-border);
  border-radius: var(--eg-radius);
  padding: 24px 28px;
  margin-top: 40px;
  text-align: center;
}
.eg-context-bottom p { color: var(--eg-text-muted); font-size: 14px; margin-bottom: 0; }

/* ============================================================
   13. FOOTER
   ============================================================ */
.eg-footer {
  background: var(--eg-bg-alt);
  border-top: 2px solid var(--eg-border);
  padding: 64px 0 0;
}
.eg-footer h4 { color: var(--eg-accent); font-family: var(--eg-display); font-size: 1rem; font-weight: 700; margin-bottom: 18px; letter-spacing: 0.5px; text-transform: uppercase; }
.eg-footer ul { list-style: none; padding: 0; }
.eg-footer ul li { margin-bottom: 10px; }
.eg-footer ul li a { color: var(--eg-text-muted); font-size: 14px; text-decoration: none; }
.eg-footer ul li a:hover { color: var(--eg-accent); }
.eg-footer-brand p { color: var(--eg-text-muted); font-size: 14px; line-height: 1.6; }
.eg-footer-brand a { color: var(--eg-turq); }
.eg-footer-rg {
  margin-top: 48px;
  padding: 28px 0;
  border-top: 1px solid var(--eg-border);
  background: var(--eg-bg-deep);
}
.eg-footer-rg-cols { gap: 28px; }
.eg-rg-what h4 { color: var(--eg-accent); font-size: 0.9rem; margin-bottom: 10px; }
.eg-rg-what p { color: var(--eg-text-muted); font-size: 13px; margin-bottom: 0; }
.eg-rg-when h4 { color: var(--eg-warn); font-size: 0.9rem; margin-bottom: 10px; }
.eg-rg-when p { color: var(--eg-text-muted); font-size: 13px; margin-bottom: 0; }
.eg-footer-regulators {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}
.eg-footer-regulators a { display: inline-flex; align-items: center; text-decoration: none; }
.eg-reg-frame {
  background: #1e3a2a;
  border-radius: 8px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border: 1px solid #2a5040;
}
.eg-reg-frame img { height: 32px; width: auto; max-width: 110px; object-fit: contain; }
.eg-footer-disclaimer {
  padding: 20px 0 28px;
  border-top: 1px solid var(--eg-border);
  margin-top: 20px;
}
.eg-footer-disclaimer p { color: var(--eg-text-muted); font-size: 12.5px; line-height: 1.6; }
.eg-footer-bottom {
  padding: 16px 0;
  border-top: 1px solid var(--eg-border);
  text-align: center;
}
.eg-footer-bottom p { color: var(--eg-text-muted); font-size: 13px; margin-bottom: 0; }

/* ============================================================
   14. GAME MACHINE (5x3 slot)
   ============================================================ */
.eg-game-wrap {
  position: relative;
  min-height: 100vh;
  background: var(--eg-bg-deep);
  background-size: cover;
  background-position: center;
}
.eg-game-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,14,0,.7) 0%, rgba(10,6,0,.85) 100%);
  z-index: 0;
}
.eg-game-section {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
.eg-game-machine {
  background: linear-gradient(160deg, #2a1a00, #1a0e00);
  border: 3px solid var(--eg-accent);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(212,180,106,.4), inset 0 0 30px rgba(0,0,0,.5);
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}
/* cabinet lights strip */
.eg-game-top {
  background: var(--eg-bg-alt);
  border-bottom: 2px solid var(--eg-accent);
  padding: 14px 20px 10px;
  text-align: center;
}
.eg-game-marquee {
  font-family: var(--eg-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--eg-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eg-game-lights {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.eg-game-lights span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--eg-gold);
  animation: egLightPulse 1.2s ease-in-out infinite;
}
.eg-game-lights span:nth-child(even) { background: var(--eg-turq); animation-delay: 0.6s; }
@keyframes egLightPulse {
  0%,100% { opacity: 1; box-shadow: 0 0 8px currentColor; }
  50% { opacity: 0.3; box-shadow: none; }
}

/* stats bar */
.eg-game-stats {
  display: flex;
  justify-content: space-around;
  padding: 10px 16px;
  background: #0e0700;
  border-bottom: 1px solid var(--eg-border);
  gap: 8px;
  flex-wrap: wrap;
}
.eg-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 72px;
}
.eg-stat-label { font-size: 10px; color: var(--eg-text-muted); text-transform: uppercase; letter-spacing: 1px; }
.eg-stat-val {
  font-family: var(--eg-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--eg-gold);
  background: #100800;
  padding: 2px 8px;
  border-radius: 4px;
  min-width: 56px;
  text-align: center;
  letter-spacing: 1px;
}
.eg-stat-win { color: var(--eg-turq); }

/* POWER METER */
.eg-power-meter {
  padding: 12px 20px;
  background: var(--eg-bg-alt);
  border-bottom: 2px solid var(--eg-border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.eg-meter-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--eg-turq);
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 80px;
}
.eg-meter-track {
  flex: 1;
  height: 16px;
  background: #0e0700;
  border-radius: 8px;
  border: 1px solid var(--eg-border);
  overflow: hidden;
  position: relative;
}
.eg-meter-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--eg-turq-dark), var(--eg-turq));
  border-radius: 8px;
  transition: width 0.4s ease;
  box-shadow: 0 0 8px rgba(48,200,176,.5);
}
.eg-meter-scarab {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  font-size: 18px;
  transition: right 0.4s ease;
  filter: drop-shadow(0 0 4px var(--eg-turq));
}
.eg-meter-pct {
  font-family: var(--eg-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--eg-turq);
  min-width: 36px;
  text-align: right;
  flex-shrink: 0;
}
.eg-super-spin-banner {
  display: none;
  background: linear-gradient(90deg, var(--eg-turq-dark), #0a3028, var(--eg-turq-dark));
  color: var(--eg-turq);
  text-align: center;
  padding: 8px;
  font-family: var(--eg-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: egSuperFlash 0.8s ease-in-out infinite;
  border-bottom: 2px solid var(--eg-turq);
}
.eg-super-spin-banner.eg-active { display: block; }
@keyframes egSuperFlash {
  0%,100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* reels frame */
.eg-reels-frame {
  position: relative;
  padding: 16px;
  background: #0a0600;
}
.eg-reels-window {
  display: flex;
  gap: 6px;
  overflow: hidden;
  border: 2px solid var(--eg-accent);
  border-radius: 12px;
  background: #050300;
  box-shadow: inset 0 0 20px rgba(0,0,0,.8);
  position: relative;
}
.eg-reel {
  flex: 1;
  height: 260px;
  overflow: hidden;
  position: relative;
  border-right: 1px solid var(--eg-border);
}
.eg-reel:last-child { border-right: none; }
.eg-reel-strip {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.eg-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  width: 100%;
  flex-shrink: 0;
  background: rgba(42,28,8,.6);
  border-bottom: 1px solid #2a1a04;
  transition: background 0.2s;
  color: var(--eg-accent);
}
.eg-reel { color: var(--eg-accent); }
.eg-cell { display: block; height: 84px; background: rgba(42,28,8,.6); color: var(--eg-accent); }
.eg-symbol img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}
/* center-row highlight */
.eg-reels-window::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 86px;
  transform: translateY(-50%);
  border: 2.5px solid var(--eg-accent);
  border-radius: 8px;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 16px rgba(212,180,106,.3);
}

/* paylines */
.eg-paylines {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  pointer-events: none;
  z-index: 4;
}
.eg-payline {
  stroke: var(--eg-accent);
  stroke-width: 2.5;
  stroke-opacity: 0;
  fill: none;
  transition: stroke-opacity 0.3s;
}
.eg-payline-active { stroke-opacity: 0.9; filter: drop-shadow(0 0 4px var(--eg-gold)); }

.eg-win-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--eg-gold);
  color: var(--eg-bg-deep);
  border-radius: 12px;
  padding: 16px 32px;
  text-align: center;
  z-index: 10;
  transition: transform 0.25s cubic-bezier(.17,.67,.35,1.5);
  pointer-events: none;
  box-shadow: 0 0 40px rgba(240,200,64,.6);
}
.eg-win-popup.eg-win-popup-show { transform: translate(-50%, -50%) scale(1); }
.eg-win-popup-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.eg-win-popup-amount { display: block; font-family: var(--eg-mono); font-size: 2rem; font-weight: 900; }
/* super spin glow on reels */
.eg-super-mode .eg-reel { background: rgba(24,120,96,.15); }
.eg-super-mode .eg-reels-window { border-color: var(--eg-turq); box-shadow: 0 0 30px rgba(48,200,176,.4); }
.eg-super-mode .eg-reels-window::before { border-color: var(--eg-turq); box-shadow: 0 0 20px rgba(48,200,176,.5); }

/* controls */
.eg-game-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: var(--eg-bg-alt);
  border-top: 1.5px solid var(--eg-border);
  flex-wrap: wrap;
}
.eg-bet-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.eg-ctrl-label { font-size: 11px; font-weight: 700; color: var(--eg-text-muted); text-transform: uppercase; letter-spacing: 1px; margin-right: 4px; }
.eg-bet-btn {
  background: var(--eg-bg-mid);
  border: 1.5px solid var(--eg-border);
  color: var(--eg-text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--eg-mono);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  transition: all 0.15s;
}
.eg-bet-btn:hover { border-color: var(--eg-accent); color: var(--eg-accent); }
.eg-bet-active { background: var(--eg-accent) !important; border-color: var(--eg-accent) !important; color: var(--eg-bg-deep) !important; }
.eg-spin-btn {
  background: linear-gradient(135deg, var(--eg-gold), var(--eg-accent));
  border: none;
  color: var(--eg-bg-deep);
  padding: 0 36px;
  height: 58px;
  border-radius: 12px;
  font-family: var(--eg-display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 2px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(212,180,106,.5);
  transition: all 0.15s;
  min-width: 120px;
}
.eg-spin-btn:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 28px rgba(212,180,106,.65); }
.eg-spin-btn:active { transform: scale(0.97); }
.eg-spin-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.eg-extra-controls { display: flex; gap: 8px; }
.eg-aux-btn {
  background: var(--eg-bg-mid);
  border: 1.5px solid var(--eg-border);
  color: var(--eg-text-muted);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  min-height: 44px;
  transition: all 0.15s;
  text-transform: uppercase;
}
.eg-aux-btn:hover { border-color: var(--eg-turq); color: var(--eg-turq); }
.eg-aux-active { border-color: var(--eg-turq) !important; color: var(--eg-turq) !important; background: rgba(48,200,176,.1) !important; }
.eg-game-message {
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--eg-text-muted);
  background: var(--eg-bg-deep);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eg-multiplier-banner {
  background: var(--eg-turq-dark);
  color: var(--eg-turq);
  text-align: center;
  padding: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: none;
}
.eg-multiplier-banner.eg-active { display: block; }

/* jackpot teaser strip */
.eg-jackpot-teaser {
  text-align: center;
  padding: 14px 20px;
  background: var(--eg-bg-mid);
  border-top: 1px solid var(--eg-border);
  font-family: var(--eg-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--eg-gold);
  text-transform: uppercase;
  opacity: 0.8;
}

/* paytable */
.eg-paytable {
  margin: 0 20px 20px;
  background: var(--eg-bg-alt);
  border: 1px solid var(--eg-border);
  border-radius: var(--eg-radius);
  overflow: hidden;
}
.eg-paytable table { width: 100%; border-collapse: collapse; }
.eg-paytable th { background: var(--eg-bg-mid); color: var(--eg-accent); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; padding: 10px 14px; text-align: left; }
.eg-paytable td { padding: 8px 14px; border-bottom: 1px solid var(--eg-border); color: var(--eg-text-muted); font-size: 13px; vertical-align: middle; }
.eg-paytable tr:last-child td { border-bottom: none; }
.eg-paytable td img { width: 28px; height: 28px; }
.eg-paytable .eg-pay-wild { color: var(--eg-turq); font-weight: 700; }

/* ============================================================
   15. SUB-PAGE HERO
   ============================================================ */
.eg-sub-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  background: var(--eg-bg-mid);
  overflow: hidden;
}
.eg-sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,14,0,.85), rgba(26,14,0,.6));
  z-index: 1;
}
.eg-sub-hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 24px 60px;
  max-width: 700px;
}
.eg-sub-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--eg-turq); text-transform: uppercase; margin-bottom: 14px; display: block; }
.eg-sub-hero h1 { color: var(--eg-accent); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.eg-sub-hero-lead { color: var(--eg-text-muted); font-size: 1.05rem; max-width: 560px; }

/* Sub-page content */
.eg-sub-content { padding: 64px 0; }
.eg-sub-h2 {
  font-family: var(--eg-display);
  font-size: 1.45rem;
  color: var(--eg-accent);
  margin: 36px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--eg-border);
}
.eg-sub-h2:first-child { margin-top: 0; border-top: none; }
.eg-sub-p { color: var(--eg-text-muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 1rem; }
.eg-sub-list { padding-left: 20px; margin-bottom: 1rem; }
.eg-sub-list li { color: var(--eg-text-muted); font-size: 15px; margin-bottom: 6px; }

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

/* ============================================================
   17. AGE GATE
   ============================================================ */
.eg-age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,6,0,.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.eg-age-box {
  background: var(--eg-bg-card);
  border: 2px solid var(--eg-accent);
  border-radius: var(--eg-radius-lg);
  padding: 40px 36px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--eg-shadow-gold);
}
.eg-age-box h2 { color: var(--eg-gold); margin-bottom: 16px; font-size: 1.8rem; }
.eg-age-box p { color: var(--eg-text-muted); font-size: 14px; margin-bottom: 28px; }
.eg-age-confirm {
  background: var(--eg-gold);
  color: var(--eg-bg-deep);
  border: none;
  padding: 14px 40px;
  border-radius: var(--eg-radius);
  font-family: var(--eg-display);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 52px;
  transition: all 0.15s;
}
.eg-age-confirm:hover { background: var(--eg-accent-lit); transform: scale(1.03); }
.eg-age-deny { display: block; margin-top: 14px; color: var(--eg-text-muted); font-size: 13px; }
.eg-age-deny a { color: var(--eg-text-muted); }

/* ============================================================
   18. COOKIE BANNER
   ============================================================ */
.eg-ck-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  background: var(--eg-bg-card);
  border-top: 2px solid var(--eg-accent);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,.5);
}
.eg-ck-text { font-size: 13px; color: var(--eg-text-muted); flex: 1; min-width: 220px; }
.eg-ck-text a { color: var(--eg-accent); }
.eg-ck-btns { display: flex; gap: 10px; flex-shrink: 0; }
.eg-ck-accept {
  background: var(--eg-accent);
  color: var(--eg-bg-deep);
  border: none;
  padding: 9px 22px;
  border-radius: var(--eg-radius);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
}
.eg-ck-decline {
  background: none;
  border: 1.5px solid var(--eg-border);
  color: var(--eg-text-muted);
  padding: 9px 18px;
  border-radius: var(--eg-radius);
  font-size: 13px;
  cursor: pointer;
  min-height: 44px;
}

/* ============================================================
   19. UTILITY / MISC
   ============================================================ */
.eg-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.eg-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--eg-accent);
  color: var(--eg-bg-deep);
  padding: 12px 30px;
  border-radius: var(--eg-radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.15s;
  min-height: 48px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.4px;
}
.eg-btn-primary:hover { background: var(--eg-accent-lit); color: var(--eg-bg-deep); transform: translateY(-1px); }
.eg-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--eg-accent);
  border: 2px solid var(--eg-accent);
  padding: 12px 30px;
  border-radius: var(--eg-radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.15s;
  min-height: 48px;
  cursor: pointer;
}
.eg-btn-outline:hover { background: var(--eg-accent); color: var(--eg-bg-deep); }
.eg-divider { border: none; border-top: 1px solid var(--eg-border); margin: 32px 0; }
.eg-badge {
  display: inline-block;
  background: var(--eg-bg-mid);
  color: var(--eg-turq);
  border: 1px solid var(--eg-turq-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.eg-text-gold { color: var(--eg-gold); }
.eg-text-turq { color: var(--eg-turq); }
.eg-text-muted { color: var(--eg-text-muted); }
.eg-mb-0 { margin-bottom: 0 !important; }
/* Touch targets */
button, a, input, select, textarea { min-height: 44px; }
a { min-height: unset; }
button { min-height: 44px; }
input, select, textarea { font-size: 16px; min-height: 44px; }

/* Hieroglyph decorative line */
.eg-hiero-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0;
}
.eg-hiero-line::before,
.eg-hiero-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--eg-accent), transparent);
}
.eg-hiero-line span {
  color: var(--eg-gold);
  font-size: 18px;
  opacity: 0.7;
}

/* Responsible gaming strip in footer */
.eg-rg-strip {
  background: var(--eg-warn);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
}
.eg-rg-strip a { color: #fff; text-decoration: underline; }

/* Aliases for vocabulary-scrubbed class names (reel->column) */
.eg-columns-frame { position: relative; padding: 16px; background: #0a0600; }
.eg-columns-window {
  display: flex; gap: 6px; overflow: hidden;
  border: 2px solid var(--eg-accent); border-radius: 12px;
  background: #050300; box-shadow: inset 0 0 20px rgba(0,0,0,.8);
  position: relative;
}
.eg-column {
  flex: 1; height: 260px; overflow: hidden;
  position: relative; border-right: 1px solid var(--eg-border);
}
.eg-column:last-child { border-right: none; }
.eg-column-strip { display: flex; flex-direction: column; position: absolute; top: 0; left: 0; right: 0; }
.eg-columns-window::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 0;
  height: 86px; transform: translateY(-50%);
  border: 2.5px solid var(--eg-accent); border-radius: 8px;
  z-index: 3; pointer-events: none;
  box-shadow: 0 0 16px rgba(212,180,106,.3);
}
.eg-super-play-banner {
  display: none;
  background: linear-gradient(90deg, var(--eg-turq-dark), #0a3028, var(--eg-turq-dark));
  color: var(--eg-turq); text-align: center; padding: 8px;
  font-family: var(--eg-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  animation: egSuperFlash 0.8s ease-in-out infinite;
  border-bottom: 2px solid var(--eg-turq);
}
.eg-super-play-banner.eg-active { display: block; }
.eg-super-mode .eg-column { background: rgba(24,120,96,.15); }
.eg-super-mode .eg-columns-window { border-color: var(--eg-turq); box-shadow: 0 0 30px rgba(48,200,176,.4); }
.eg-super-mode .eg-columns-window::before { border-color: var(--eg-turq); box-shadow: 0 0 20px rgba(48,200,176,.5); }

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