/* =====================================================
   Grey Eagle Casino Access — Brand Design Tokens
   ===================================================== */

:root {
  --ge-black: #000000;
  --ge-cream: #F6F4F1;
  --ge-indigo: #4D5B94;
  --ge-indigo-cta: #6473AF;
  --ge-red: #91221F;
  --ge-orange: #FF951E;
  --ge-charcoal: #292929;
  --ge-border: #C4C4C4;
  --ge-muted: #9CA3AF;
  --ge-white: #FFFFFF;
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: "Open Sans", system-ui, sans-serif;
  background-color: var(--ge-cream);
  color: var(--ge-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Typography helpers ---- */
.ge-display {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.ge-heading {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.ge-subheading {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.ge-eyebrow {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.ge-label {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.ge-body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 1.65;
}

/* ---- Signature CTA: circular arrow button ---- */
.ge-circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ge-indigo-cta);
  color: var(--ge-white);
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ge-circle-btn:hover { background: var(--ge-indigo); }
.ge-circle-btn:active { transform: scale(0.95); }

.ge-circle-btn-lg {
  width: 56px;
  height: 56px;
}

.ge-circle-btn-sm {
  width: 40px;
  height: 40px;
}

/* ---- CTA row (text + circle button) ---- */
.ge-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.ge-cta-row .ge-cta-label {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}

.ge-cta-row:hover .ge-cta-label { opacity: 0.75; }

/* ---- Band utilities ---- */
.ge-band-black { background-color: var(--ge-black); color: var(--ge-cream); }
.ge-band-cream { background-color: var(--ge-cream); color: var(--ge-black); }
.ge-band-indigo { background-color: var(--ge-indigo); color: var(--ge-cream); }
.ge-band-charcoal { background-color: var(--ge-charcoal); color: var(--ge-cream); }

/* ---- Cards ---- */
.ge-card {
  background: var(--ge-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.10), 0 4px 6px -4px rgba(0,0,0,0.06);
}

.ge-card-dark {
  background: var(--ge-black);
  border-radius: 12px;
  overflow: hidden;
  color: var(--ge-cream);
}

/* ---- Hero gradient scrim ---- */
.ge-scrim {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 80%);
}

.ge-scrim-top {
  background: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}

/* ---- Phone frame ---- */
.ge-phone {
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.12);
  background: #0a0a0a;
  overflow: hidden;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

/* ---- Navigation ---- */
#ge-header {
  transition: background 0.3s ease, border-color 0.3s ease;
}

#ge-header.scrolled {
  background: var(--ge-black) !important;
  border-color: rgba(246,244,241,0.1) !important;
}

#ge-mobile-menu {
  padding-bottom: env(safe-area-inset-bottom);
}

/* ---- Event date pill ---- */
.ge-date-pill {
  display: inline-block;
  background: var(--ge-indigo);
  color: var(--ge-cream);
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 3px 10px 3px 14px;
  border-radius: 33px 9px 9px 33px;
}

/* ---- Legal page typography ---- */
.ge-legal h2 {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  color: var(--ge-black);
}

.ge-legal h3 {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--ge-charcoal);
}

.ge-legal p,
.ge-legal li {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ge-charcoal);
}

.ge-legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.6rem 0;
}

.ge-legal a { color: var(--ge-indigo); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Screenshot strip ---- */
.ge-screenshot-strip {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.ge-screenshot-strip > * { scroll-snap-align: center; }

/* ---- FAQ accordion ---- */
.ge-faq-item details summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.ge-faq-item details summary::-webkit-details-marker { display: none; }
.ge-faq-item details[open] .ge-faq-icon { transform: rotate(45deg); }
.ge-faq-icon { transition: transform 0.25s ease; }

/* ---- Divider line ---- */
.ge-divider {
  border: none;
  height: 1px;
  background: var(--ge-border);
}

/* ---- Footer ---- */
#ge-footer a:hover { color: var(--ge-cream); }

/* ---- Cookie banner ---- */
#ge-cookie {
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

/* ---- Indigo band feature pill ---- */
.ge-feature-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ---- Utility ---- */
.text-indigo { color: var(--ge-indigo); }
.text-cream { color: var(--ge-cream); }
.text-muted { color: var(--ge-muted); }
.bg-indigo { background-color: var(--ge-indigo); }
