/* ==========================================================================
   MOUR APP — STYLESHEET
   Cyber-Tactical Aesthetic | Dark Midnight & Electric Cyan | 3D Parallax & HUD
   ========================================================================== */

:root {
  /* Brand Palette */
  --bg-deep: #050B1A;
  --bg-primary: #070E22;
  --bg-secondary: #0B1329;
  --bg-card: rgba(15, 23, 42, 0.82);
  --bg-card-hover: rgba(20, 32, 60, 0.9);
  --bg-glass: rgba(11, 19, 41, 0.72);
  
  --accent-cyan: #00E5FF;
  --accent-cyan-glow: rgba(0, 229, 255, 0.38);
  --accent-azure: #00B4D8;
  --accent-teal: #008392;
  --accent-gold: #FACC15;
  --accent-gold-glow: rgba(250, 204, 21, 0.35);
  --accent-red: #EF4444;
  --accent-green: #10B981;

  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-highlight: #38BDF8;

  --border-subtle: #1E293B;
  --border-card: rgba(51, 65, 85, 0.6);
  --border-glow: rgba(0, 229, 255, 0.35);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Grotesk', 'SF Mono', Consolas, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

::selection {
  background: var(--accent-cyan);
  color: var(--bg-deep);
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan), var(--accent-gold));
  box-shadow: 0 0 10px var(--accent-cyan);
  z-index: 10000;
  transition: width 0.08s linear;
}

/* Ambient Background Canvas / Grid Overlay */
.cyber-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  background-image: 
    linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cyber-glow-orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, rgba(0, 131, 146, 0.05) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.2s ease-out;
}

.orb-1 { top: -100px; right: -150px; }
.orb-2 { top: 40%; left: -200px; background: radial-gradient(circle, rgba(250, 204, 21, 0.08) 0%, transparent 70%); }
.orb-3 { bottom: -150px; right: 10%; }

/* Utility Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 14, 34, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.8);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 14, 34, 0.95);
  border-bottom-color: rgba(0, 229, 255, 0.25);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--accent-cyan-glow);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.25);
  transition: transform 0.3s var(--ease-elastic);
}

.brand-wrapper:hover .brand-logo-img {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 0 22px var(--accent-cyan);
}

.brand-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFFFFF 30%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-badge {
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: var(--accent-cyan);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: width 0.25s var(--ease-out);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-game-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.4);
  color: var(--accent-gold);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-game-toggle:hover {
  background: rgba(250, 204, 21, 0.22);
  box-shadow: 0 0 18px var(--accent-gold-glow);
  transform: translateY(-1px);
}

.game-icon-pulse {
  display: inline-block;
  animation: pulseRotate 2s infinite ease-in-out;
}

@keyframes pulseRotate {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.btn-nav-waitlist {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #008392 0%, #00B4D8 100%);
  color: #fff;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 229, 255, 0.3);
  transition: all 0.25s ease;
}

.btn-nav-waitlist:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.5);
  background: linear-gradient(135deg, #009BB0 0%, #00E5FF 100%);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   LIVE NETWORK TICKER
   ========================================================================== */
.network-ticker {
  background: rgba(11, 19, 41, 0.9);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
}

.ticker-track {
  display: inline-flex;
  animation: tickerScroll 40s linear infinite;
  gap: 32px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.status-dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: blinkLive 1.5s infinite;
}

@keyframes blinkLive {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   HERO SECTION & PARALLAX AERIAL STAGE
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 940px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-parallax-bg {
  position: absolute;
  top: -15%;
  left: -5%;
  width: 110%;
  height: 130%;
  pointer-events: none;
  z-index: 1;
  transform: translateY(0);
  will-change: transform;
}

.hero-aerial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(1.4) contrast(1.15) brightness(0.9);
}

.hero-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 20%, var(--bg-deep) 85%);
  z-index: 2;
}

/* ==========================================================================
   FOUNDING EYES VIP ENROLLMENT POP-UP CARDS (SPARSED LIKE PLAYING CARDS)
   ========================================================================== */
.vip-ads-wrapper {
  position: static;
}

.vip-ad-popup {
  position: absolute;
  width: 245px;
  background: rgba(7, 16, 36, 0.94);
  border: 1px solid rgba(0, 229, 255, 0.45);
  border-radius: 15px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 18px;
  z-index: 10;
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.85), 0 0 20px rgba(0, 229, 255, 0.15);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  user-select: none;
}

/* Playing card fanned positions in the outer side spaces with guaranteed 50px center clearance */
/* LEFT SIDE WING: Card 1 (Aqua) & Card 3 (Green) */
.ad-pos-tl {
  top: 70px;
  left: max(16px, calc(50% - 635px));
  right: auto;
  transform: rotate(-3.5deg);
  animation: floatCardTL 6.5s ease-in-out infinite;
}

.ad-pos-bl {
  top: 520px;
  left: max(20px, calc(50% - 650px));
  right: auto;
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.85), 0 0 20px rgba(16, 185, 129, 0.15);
  transform: rotate(2.5deg);
  animation: floatCardBL 6.8s ease-in-out infinite 1.2s;
}

/* RIGHT SIDE WING: Card 2 (Yellow) & Card 4 (Purple) */
.ad-pos-tr {
  top: 200px;
  right: max(16px, calc(50% - 635px));
  left: auto;
  border-color: rgba(250, 204, 21, 0.5);
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.85), 0 0 20px rgba(250, 204, 21, 0.15);
  transform: rotate(3deg);
  animation: floatCardTR 7.0s ease-in-out infinite 0.6s;
}

.ad-pos-br {
  top: 720px;
  right: max(20px, calc(50% - 650px));
  left: auto;
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.85), 0 0 20px rgba(168, 85, 247, 0.15);
  transform: rotate(-2.5deg);
  animation: floatCardBR 6.4s ease-in-out infinite 1.8s;
}

/* Hover straightens up the playing card and lifts it forward */
.ad-pos-tl:hover,
.ad-pos-bl:hover,
.ad-pos-tr:hover,
.ad-pos-br:hover {
  transform: translateY(-8px) rotate(0deg) scale(1.04);
  z-index: 30;
}

.vip-ad-popup:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 26px 55px -6px rgba(0, 0, 0, 0.95), 0 0 35px rgba(0, 229, 255, 0.45);
}

.ad-pos-tr:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 26px 55px -6px rgba(0, 0, 0, 0.95), 0 0 35px rgba(250, 204, 21, 0.45);
}

.ad-pos-bl:hover {
  border-color: var(--accent-green);
  box-shadow: 0 26px 55px -6px rgba(0, 0, 0, 0.95), 0 0 35px rgba(16, 185, 129, 0.45);
}

.ad-pos-br:hover {
  border-color: #C084FC;
  box-shadow: 0 26px 55px -6px rgba(0, 0, 0, 0.95), 0 0 35px rgba(168, 85, 247, 0.45);
}

/* Playing Card Zero-Gravity Floating Sway Keyframes */
@keyframes floatCardTL {
  0%, 100% { transform: translateY(0) rotate(-3.5deg); }
  50% { transform: translateY(-8px) rotate(-2.5deg); }
}

@keyframes floatCardTR {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(9px) rotate(2deg); }
}

@keyframes floatCardBL {
  0%, 100% { transform: translateY(0) rotate(2.5deg); }
  50% { transform: translateY(-7px) rotate(3.5deg); }
}

@keyframes floatCardBR {
  0%, 100% { transform: translateY(0) rotate(-2.5deg); }
  50% { transform: translateY(8px) rotate(-1.5deg); }
}

.ad-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.badge-cyan {
  background: rgba(0, 229, 255, 0.14);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.35);
}

.badge-gold {
  background: rgba(250, 204, 21, 0.14);
  color: var(--accent-gold);
  border: 1px solid rgba(250, 204, 21, 0.35);
}

.badge-green {
  background: rgba(16, 185, 129, 0.14);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.badge-purple {
  background: rgba(168, 85, 247, 0.14);
  color: #C084FC;
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.ad-pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 6px var(--accent-cyan);
  animation: pulseDot 1.4s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.ad-popup-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.ad-popup-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0 0 12px;
}

.ad-popup-desc strong {
  color: #fff;
}

.ad-popup-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(0, 229, 255, 0.14);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 8px;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.vip-ad-popup:hover .ad-popup-cta {
  background: var(--accent-cyan);
  color: #030712;
  box-shadow: 0 4px 14px rgba(0, 229, 255, 0.4);
}

.cta-gold {
  background: rgba(250, 204, 21, 0.12);
  border-color: rgba(250, 204, 21, 0.35);
  color: var(--accent-gold);
}

.vip-ad-popup:hover .cta-gold {
  background: var(--accent-gold);
  color: #030712;
  box-shadow: 0 4px 14px rgba(250, 204, 21, 0.4);
}

.cta-green {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: var(--accent-green);
}

.vip-ad-popup:hover .cta-green {
  background: var(--accent-green);
  color: #030712;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.cta-purple {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.35);
  color: #C084FC;
}

.vip-ad-popup:hover .cta-purple {
  background: #A855F7;
  color: #fff;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.4);
}

.ad-arrow {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.vip-ad-popup:hover .ad-arrow {
  transform: translateX(3px);
}

/* Tablet & Mobile responsive layout for VIP ad popups (Prevents any overlap) */
@media (max-width: 1240px) {
  .vip-ads-wrapper {
    max-width: 680px;
    margin: 20px auto 28px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    position: relative;
    z-index: 10;
  }

  .vip-ad-popup {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    transform: none !important;
    animation: none !important;
  }
}

/* VIP Card Highlight Animation upon Ad CTA Click */
.waitlist-card.vip-card-highlight {
  animation: vipGlowPing 1s ease-in-out 3;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 55px rgba(250, 204, 21, 0.6) !important;
}

@keyframes vipGlowPing {
  0%, 100% {
    box-shadow: 0 0 45px rgba(250, 204, 21, 0.6);
    border-color: var(--accent-gold);
  }
  50% {
    box-shadow: 0 0 70px rgba(0, 229, 255, 0.8);
    border-color: var(--accent-cyan);
  }
}

.hud-bracket {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-cyan);
  pointer-events: none;
  opacity: 0.6;
}

.bracket-tl { top: 12%; left: 4%; border-right: none; border-bottom: none; }
.bracket-tr { top: 12%; right: 4%; border-left: none; border-bottom: none; }
.bracket-bl { bottom: 12%; left: 4%; border-right: none; border-top: none; }
.bracket-br { bottom: 12%; right: 4%; border-left: none; border-top: none; }

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--accent-cyan);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
  animation: floatSlow 4s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Theatrical Premiere Backlighting & Headline Styles */
.hero-premiere-container {
  position: relative;
  z-index: 6;
}

.hero-title-theatrical-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  max-width: 95vw;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.45) 0%, rgba(250, 204, 21, 0.22) 35%, rgba(168, 85, 247, 0.15) 55%, transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
  animation: premiereLightPulse 4s ease-in-out infinite alternate;
}

.hero-beam-flare {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.8) 30%, #FFFFFF 50%, rgba(250, 204, 21, 0.8) 70%, transparent 100%);
  filter: drop-shadow(0 0 14px #00E5FF) drop-shadow(0 0 28px #FACC15);
  pointer-events: none;
  z-index: -1;
  animation: flareSpread 4s ease-in-out infinite;
}

@keyframes premiereLightPulse {
  0% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.75; }
  100% { transform: translate(-50%, -50%) scale(1.18); opacity: 1; }
}

@keyframes flareSpread {
  0%, 100% { width: 380px; opacity: 0.6; }
  50% { width: 580px; opacity: 1; }
}

.hero-premiere-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.15) 0%, rgba(250, 204, 21, 0.18) 100%);
  border: 1px solid rgba(250, 204, 21, 0.5);
  color: var(--accent-gold);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.25);
  animation: floatSlow 4s ease-in-out infinite;
}

.hero-title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-title-premiere {
  font-size: clamp(3.6rem, 9vw, 6.4rem) !important;
  font-weight: 950 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 8px !important;
  text-transform: uppercase !important;
  position: relative;
}

.title-glow-premiere {
  background: linear-gradient(180deg, #FFFFFF 20%, #E0F7FA 50%, #00E5FF 80%, #0284C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 35px rgba(0, 229, 255, 0.8)) drop-shadow(0 0 75px rgba(0, 229, 255, 0.5));
  display: inline-block;
}

.hero-phonetic-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-cyan);
  background: rgba(11, 19, 41, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.45);
  padding: 4px 16px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
  margin-top: 6px;
}

.hero-title .title-glow {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--accent-cyan) 75%, var(--accent-azure) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(0, 229, 255, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--text-highlight);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #008392 0%, #00B4D8 50%, #00E5FF 100%);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.45);
  transition: all 0.3s var(--ease-elastic);
  position: relative;
  overflow: hidden;
}

.btn-primary-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-primary-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 229, 255, 0.6);
}

.btn-primary-glow:hover::before {
  opacity: 1;
}

.btn-secondary-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(250, 204, 21, 0.5);
  color: var(--accent-gold);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.btn-secondary-ghost:hover {
  background: rgba(250, 204, 21, 0.15);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 204, 21, 0.3);
}

/* ==========================================================================
   FOUNDING EYE VIP WAITLIST CARD (UPGRADED FUNNEL)
   ========================================================================== */
.waitlist-section {
  position: relative;
  z-index: 10;
  padding: 20px 0 80px;
}

.waitlist-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 229, 255, 0.12);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease;
}

.waitlist-header {
  background: linear-gradient(135deg, #0F172A 0%, #070E22 100%);
  padding: 36px 32px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.waitlist-vip-tag {
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: var(--accent-cyan);
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
}

.waitlist-title {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.waitlist-desc {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Scavenger Hunt Boost Banner inside Form */
.scavenger-perk-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, rgba(250, 204, 21, 0.15) 0%, rgba(11, 19, 41, 0.8) 100%);
  border-left: 4px solid var(--accent-gold);
  border-bottom: 1px solid rgba(250, 204, 21, 0.3);
  padding: 12px 20px;
  font-size: 13px;
}

.scavenger-perk-text {
  color: var(--accent-gold);
  font-weight: 600;
}

.btn-mini-play {
  background: rgba(250, 204, 21, 0.2);
  color: #fff;
  border: 1px solid var(--accent-gold);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-mini-play:hover {
  background: var(--accent-gold);
  color: #000;
}

.waitlist-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-step-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 6px;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-input, .form-select {
  width: 100%;
  background: #091124;
  border: 1px solid #2B3954;
  border-radius: 10px;
  padding: 12px 14px;
  color: #FFF;
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
  background: #0E1A36;
}

.form-select option {
  background: #0F172A;
  color: #FFF;
}

.stripe-security-notice {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid #1E293B;
  border-radius: 10px;
  padding: 14px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input[type="checkbox"] {
  accent-color: var(--accent-teal);
  width: 17px;
  height: 17px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
  cursor: pointer;
}

.error-alert-box {
  display: none;
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
  border: 1px solid #EF4444;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
}

.btn-submit-waitlist {
  width: 100%;
  background: linear-gradient(135deg, #008392 0%, #00B4D8 60%, #00E5FF 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 16px;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.35);
  transition: all 0.25s ease;
  margin-top: 6px;
}

.btn-submit-waitlist:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.55);
}

.btn-submit-waitlist:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Success Card & Holographic Digital ID */
.waitlist-success-card {
  display: none;
  padding: 40px 28px;
  text-align: center;
}

.success-confetti-icon {
  font-size: 54px;
  margin-bottom: 12px;
  animation: bounceScale 1s ease;
}

@keyframes bounceScale {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* Holographic Founding Eye Pass */
.holographic-pass {
  position: relative;
  max-width: 440px;
  margin: 24px auto;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #091226 0%, #0F1D3D 50%, #0A162D 100%);
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.3), inset 0 0 20px rgba(0, 229, 255, 0.15);
  text-align: left;
  overflow: hidden;
}

.holographic-pass::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 55%
  );
  animation: holoSheen 6s infinite linear;
  pointer-events: none;
}

@keyframes holoSheen {
  0% { transform: translate(-30%, -30%); }
  100% { transform: translate(30%, 30%); }
}

.pass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(0, 229, 255, 0.4);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.pass-id {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-cyan);
}

.pass-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.pass-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 14px;
}

.pass-details strong {
  color: #fff;
  display: block;
}

/* ==========================================================================
   ABOUT MOUR & 3D CAMERA HUD VIEWPORT
   ========================================================================== */
.about-section {
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-heading span {
  color: var(--accent-cyan);
}

.about-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #E2E8F0;
}

.feature-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 11px;
}

/* 3D Camera HUD Mockup Stage */
.camera-hud-stage {
  perspective: 1200px;
  position: relative;
}

.camera-hud-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 229, 255, 0.2);
  border: 2px solid rgba(0, 229, 255, 0.4);
  background: #000;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  cursor: crosshair;
}

.hud-viewport-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Interactive Viewfinder Overlays */
.hud-glass-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
}

.hud-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.rec-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-red);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 8px var(--accent-red);
  animation: blinkRec 1s infinite;
}

@keyframes blinkRec {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.1; }
}

.hud-center-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  pointer-events: none;
}

.reticle-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--accent-cyan);
  border-radius: 50%;
  animation: rotateRing 12s linear infinite;
}

@keyframes rotateRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hud-bounty-chip {
  align-self: flex-start;
  background: rgba(11, 19, 41, 0.85);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

/* ==========================================================================
   INTERACTIVE CREATOR EARNINGS CALCULATOR
   ========================================================================== */
.calculator-section {
  padding: 60px 0 100px;
  position: relative;
  z-index: 5;
}

.calculator-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(11, 19, 41, 0.94) 100%);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.calc-control {
  margin-bottom: 28px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calc-title {
  font-size: 15px;
  font-weight: 600;
  color: #E2E8F0;
}

.calc-val-pill {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.12);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0, 229, 255, 0.35);
}

.calc-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1E293B;
  outline: none;
  accent-color: var(--accent-cyan);
  cursor: pointer;
}

.earnings-display-box {
  background: rgba(9, 17, 36, 0.9);
  border: 2px solid var(--accent-cyan);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.earnings-number {
  font-size: 48px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #FFFFFF;
  text-shadow: 0 0 25px var(--accent-cyan-glow);
  margin: 10px 0;
}

.earnings-subtext {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ==========================================================================
   SERVICES SHOWCASE (3D PARALLAX CARDS)
   ========================================================================== */
.services-section {
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

.services-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6);
  transform-style: preserve-3d;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.2);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-img {
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 19, 41, 0.85);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.service-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-perk-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-weight: 600;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

/* ==========================================================================
   "FOUNDING EYE" SCAVENGER HUNT GAME OVERLAY & BEACONS
   ========================================================================== */

/* Hidden Interactive City Beacons */
.scavenger-target {
  position: relative;
  display: inline-block;
  cursor: crosshair;
}

.bounty-beacon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.2);
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  animation: pulseBeacon 2s infinite ease-in-out;
  box-shadow: 0 0 20px var(--accent-gold-glow);
  transition: transform 0.2s var(--ease-elastic);
}

.bounty-beacon:hover {
  transform: scale(1.3) rotate(15deg);
  background: rgba(250, 204, 21, 0.45);
  box-shadow: 0 0 35px var(--accent-gold);
}

.bounty-beacon.captured {
  background: rgba(16, 185, 129, 0.3);
  border-color: var(--accent-green);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  animation: none;
  cursor: default;
}

@keyframes pulseBeacon {
  0% { transform: scale(1); box-shadow: 0 0 10px var(--accent-gold-glow); }
  50% { transform: scale(1.15); box-shadow: 0 0 25px var(--accent-gold); }
  100% { transform: scale(1); box-shadow: 0 0 10px var(--accent-gold-glow); }
}

/* Floating Sticky Scavenger HUD Launcher */
.game-floating-hud {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.game-hud-pill {
  background: rgba(11, 19, 41, 0.95);
  border: 1px solid var(--accent-gold);
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--accent-gold-glow);
  backdrop-filter: blur(16px);
  transition: all 0.25s ease;
}

.game-hud-pill:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.9), 0 0 30px var(--accent-gold);
}

.game-reward-chip {
  background: linear-gradient(135deg, #FACC15 0%, #EAB308 100%);
  color: #000;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
}

/* Fullscreen Tactical HUD / Mission Drawer */
.scavenger-mission-drawer {
  position: fixed;
  top: 90px;
  right: 24px;
  width: 360px;
  background: rgba(11, 19, 41, 0.96);
  border: 1px solid var(--accent-cyan);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 229, 255, 0.25);
  backdrop-filter: blur(20px);
  z-index: 9998;
  display: none;
  animation: slideInRight 0.3s var(--ease-out);
}

.scavenger-mission-drawer.active {
  display: block;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.drawer-title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-drawer-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 18px;
  cursor: pointer;
}

.btn-audio-toggle {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid #334155;
  color: #fff;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 12px;
  cursor: pointer;
}

.bounty-progress-bar-wrap {
  width: 100%;
  height: 8px;
  background: #1E293B;
  border-radius: 4px;
  overflow: hidden;
  margin: 12px 0 16px;
}

.bounty-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
  transition: width 0.4s var(--ease-out);
}

.clue-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.clue-item {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid #1E293B;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: all 0.2s ease;
}

.clue-item.found {
  border-color: var(--accent-green);
  background: rgba(16, 185, 129, 0.12);
}

.clue-item.found .clue-status {
  color: var(--accent-green);
}

.clue-status {
  font-size: 15px;
  line-height: 1;
}

.clue-text strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.clue-text p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 11px;
}

/* Camera Flash Capture Animation Overlay */
#camera-flash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  opacity: 0;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.05s ease-out;
}

#camera-flash-overlay.flashing {
  opacity: 0.92;
  transition: none;
}

/* Victory Voucher Modal ($5 Gift Card) */
.victory-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.victory-modal-backdrop.open {
  display: flex;
}

.victory-card {
  max-width: 520px;
  width: 100%;
  background: linear-gradient(135deg, #091226 0%, #0F1D3D 100%);
  border: 2px solid var(--accent-gold);
  border-radius: 24px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 0 50px var(--accent-gold-glow);
  position: relative;
  animation: victoryPop 0.4s var(--ease-elastic);
}

@keyframes victoryPop {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.gift-card-ticket {
  background: #060D1E;
  border: 2px dashed var(--accent-gold);
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
}

.voucher-code-display {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  margin: 10px 0;
}

.btn-copy-voucher {
  background: var(--accent-gold);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-voucher:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ==========================================================================
   CONTACT SECTION & OFFICIAL DETAILS
   ========================================================================== */
.contact-section {
  padding: 100px 0 80px;
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 14, 34, 0.95) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.contact-item:hover {
  border-color: var(--accent-cyan);
  transform: translateX(6px);
  background: rgba(20, 32, 60, 0.8);
}

.contact-icon {
  font-size: 24px;
  color: var(--accent-cyan);
}

.contact-details strong {
  display: block;
  font-size: 15px;
  color: #fff;
}

.contact-details span {
  font-size: 13px;
  color: var(--text-secondary);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(16px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
  background: #040814;
  color: var(--text-secondary);
  font-size: 13px;
  position: relative;
  z-index: 5;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & MOBILE)
   ========================================================================== */
@media (max-width: 992px) {
  .about-grid, .calculator-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .badge-gps, .badge-escrow, .badge-active, .badge-resolution {
    display: none;
  }

  .scavenger-mission-drawer {
    width: calc(100vw - 48px);
    right: 24px;
    left: 24px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(7, 14, 34, 0.98);
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px;
    gap: 20px;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.6rem;
  }
}

/* ==========================================================================
   CONTINUOUS SCROLL CANVAS
   ========================================================================== */
#mour-scroll-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   CUTOUT GLASSES LOGO STYLING
   ========================================================================== */
.brand-glasses-logo {
  height: 38px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.45));
  transition: transform 0.3s var(--ease-elastic), filter 0.3s ease;
}

.brand-wrapper:hover .brand-glasses-logo {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 0 20px var(--accent-cyan));
}

.footer-glasses-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.35));
}

/* ==========================================================================
   DEDICATED VIDEO GAME SECTION (ZELDA: LEGEND OF THE FOUNDING EYE)
   ========================================================================== */
.game-section {
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

.arcade-cabinet {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(180deg, #091226 0%, #060D1D 100%);
  border: 2px solid var(--accent-cyan);
  border-radius: 28px;
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.25), 0 20px 60px -10px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  position: relative;
}

.arcade-header {
  background: linear-gradient(90deg, #0B1736 0%, #0F234D 50%, #0B1736 100%);
  border-bottom: 2px solid rgba(0, 229, 255, 0.3);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.arcade-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.arcade-title {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
}

.arcade-title span {
  color: var(--accent-gold);
}

.arcade-controls-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-arcade {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 6px 14px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-arcade:hover {
  background: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 14px var(--accent-cyan-glow);
}

.arcade-screen-container {
  position: relative;
  width: 100%;
  background: #020617;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

#zelda-canvas {
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 640 / 400;
  background: #060E24;
  border: 2px solid #1E293B;
  border-radius: 12px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.15);
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  display: block;
}

/* CRT Scanline Overlay */
.crt-scanlines {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 800px;
  height: calc(100% - 32px);
  pointer-events: none;
  border-radius: 12px;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  ), linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.03),
    rgba(0, 255, 0, 0.01),
    rgba(0, 0, 255, 0.03)
  );
  background-size: 100% 4px, 6px 100%;
  z-index: 10;
}

/* Arcade Bottom Dashboard (Centered) */
.arcade-footer {
  background: #070E22;
  border-top: 2px solid rgba(0, 229, 255, 0.2);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.arcade-footer-center {
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  gap: 12px !important;
}

.arcade-legend-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
}

.arcade-instructions {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
}

.arcade-instructions kbd {
  background: #0F172A;
  border: 1px solid #334155;
  color: var(--accent-cyan);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
}

.quest-tracker-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #fff;
}

.quest-item-icon {
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #0B1736;
  border: 1px solid #1E293B;
}

/* Virtual Touch D-Pad for Mobile/Tablet Players */
.virtual-touch-controls {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px 20px;
  background: #060D1E;
  border-top: 1px solid #1E293B;
}

@media (max-width: 768px) {
  .virtual-touch-controls {
    display: flex;
  }
}

.dpad-grid {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  grid-template-rows: repeat(3, 44px);
  gap: 4px;
}

.btn-touch-dpad {
  background: #0F172A;
  border: 1px solid #334155;
  color: var(--accent-cyan);
  font-size: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  user-select: none;
}

.btn-touch-dpad:active {
  background: var(--accent-teal);
  color: #fff;
}

.btn-touch-action {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #008392 0%, #00E5FF 100%);
  border: 2px solid #fff;
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(0, 229, 255, 0.4);
  touch-action: manipulation;
  user-select: none;
  cursor: pointer;
}

.btn-touch-action:active {
  transform: scale(0.92);
}

/* ==========================================================================
   CENTER-ALIGNED CONTACT US & DIRECT MESSAGE STACK
   ========================================================================== */
.contact-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 740px;
  margin: 0 auto;
}

.contact-info-center {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-items-horizontal {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin-top: 10px;
}

.contact-items-horizontal .contact-item {
  flex: 1 1 210px;
  max-width: 245px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-sizing: border-box;
}

.contact-items-horizontal .contact-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-items-horizontal .contact-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  flex: 1;
}

.contact-items-horizontal .contact-title {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
  margin-bottom: 5px;
  line-height: 1.2;
}

.contact-items-horizontal .contact-address-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.35;
  display: block;
}

.contact-items-horizontal .contact-value-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.35;
  display: block;
}

/* ==========================================================================
   CENTER-ALIGNED QUEST BONUS BANNER WITH YELLOW BUTTON UNDERNEATH
   ========================================================================== */
.scavenger-perk-banner-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.14) 0%, rgba(11, 19, 41, 0.9) 100%);
  border-top: 2px solid var(--accent-gold);
  border-bottom: 1px solid rgba(250, 204, 21, 0.3);
  padding: 18px 24px;
}

.scavenger-perk-text-centered {
  color: var(--accent-gold);
  font-size: 14px;
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto;
}

.btn-play-quest-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FACC15 !important;
  color: #000000 !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  padding: 9px 24px !important;
  border-radius: 8px !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(250, 204, 21, 0.45) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.btn-play-quest-yellow:hover {
  background: #FFF066 !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 22px rgba(250, 204, 21, 0.65) !important;
}

/* ==========================================================================
   MOUR BOUNTY RUSH: LIVE SCOREBOARD & LEADERBOARD STYLING
   ========================================================================== */
.bounty-game-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: #060D1E;
  border: 2px solid var(--accent-cyan);
  border-radius: 24px;
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.25), 0 25px 60px -10px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  position: relative;
}

.bounty-scoreboard-bar {
  background: linear-gradient(90deg, #0B1736 0%, #0F234D 50%, #0B1736 100%);
  border-bottom: 2px solid rgba(0, 229, 255, 0.3);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.bounty-scoreboard-center {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 16px 20px !important;
  gap: 12px !important;
}

.bounty-top-title-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.bounty-title-center-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.35);
  padding: 6px 20px;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.bounty-glasses-icon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.5));
}

.bounty-title-text {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}

.bounty-blitz-badge {
  background: rgba(250, 204, 21, 0.2);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.3);
}

.lb-container-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  width: 100% !important;
}

.bounty-actions-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.lb-container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
}

.lb-row {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(11, 19, 41, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
}

.lb-me {
  border-color: var(--accent-cyan) !important;
  background: rgba(0, 229, 255, 0.15) !important;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
  font-weight: 800;
}

.lb-cash {
  color: #fff;
  font-weight: 800;
}

#bounty-canvas {
  width: 100%;
  max-width: 720px;
  height: auto;
  aspect-ratio: 720 / 440;
  display: block;
  margin: 0 auto;
  background: #060E22;
}

.bounty-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 10, 26, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
  text-align: center;
}

.bounty-modal-card {
  max-width: 480px;
  width: 100%;
  background: #09142E;
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 40px var(--accent-gold-glow);
}
/* MOUR APP — MOBILE OPTIMIZATION */
html, body {
  max-width: 100vw !important;
  overflow-x: hidden !important;
  position: relative;
}

* {
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  h1, .hero-title, [class*="hero"] h1, [class*="title"] {
    font-size: clamp(24px, 7vw, 36px) !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }

  header, nav, .navbar, .nav-container {
    flex-direction: column !important;
    width: 100% !important;
    padding: 12px 16px !important;
    text-align: center !important;
  }

  .grid, [class*="grid"], .services-grid, .features-grid, .cards-grid, .row {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 16px !important;
  }

  .container, [class*="container"], section, .card, [class*="card"] {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  canvas, #globe-canvas, #game-canvas, .game-container, .globe-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .modal, .popup, [class*="modal"], [class*="popup"], #mour_signup_container {
    width: 92% !important;
    max-width: 92% !important;
    margin: 10px auto !important;
  }

  input, select, textarea, button, .cta-btn, .btn {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px !important;
  }
}
/* ==========================================================
   MOUR APP — MOBILE & TABLET RESPONSIVE RESTRUCTURING
   ========================================================== */
@media (max-width: 1024px) {

  /* 1. Un-cram the top Navigation Bar */
  header, nav, .navbar, .nav-container, [class*="nav"] {
    flex-direction: column !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    width: 100% !important;
    padding: 12px 16px !important;
    gap: 12px !important;
    text-align: center !important;
  }

  .nav-links, nav ul, .menu {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  /* 2. Turn the 2-Column Split into 1 Clean Vertical Stream */
  main, section, .hero, .hero-section, .hero-container, [class*="hero"], [class*="split"], [class*="grid"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  /* 3. Center and Scale the 3D Globe / Canvas */
  canvas, #globe-canvas, .globe-wrapper, .canvas-container {
    position: relative !important;
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    margin: 0 auto 20px auto !important;
  }

  /* 4. Center Headlines & Resize */
  h1, .hero-title, [class*="hero"] h1 {
    font-size: clamp(28px, 8vw, 42px) !important;
    text-align: center !important;
    line-height: 1.15 !important;
  }

  h2, .section-title {
    font-size: clamp(22px, 6vw, 28px) !important;
    text-align: center !important;
  }

  p, .subtitle {
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  /* 5. Stack the 4 VIP Cards Vertically */
  .cards-container, .cards-grid, [class*="vip-grid"], [class*="cards"] {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 14px !important;
    margin-bottom: 24px !important;
  }

  /* 6. Expand the Form and Stack Fields into 1 Easy Column */
  #mour_signup_container, .form-container, form, [class*="form"] {
    width: 100% !important;
    max-width: 480px !important;
    margin: 20px auto !important;
  }

  /* Convert 2-column input rows (Name/DOB, Email/Phone) to full-width */
  #mour_signup_container div[style*="grid"], form div[style*="grid"], .form-row {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  input, select, textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 16px !important; /* Prevents mobile browser auto-zoom */
  }

  .cta-btn, button, #mour_submit_btn {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}
/* ==========================================================
   MOUR APP — POLISHED MOBILE HEADER, GLOBE & CARDS FIX
   ========================================================== */
@media (max-width: 1024px) {

  /* 1. CLEAN NAVIGATION BAR (No overlapping) */
  header, nav, .navbar, .nav-container, [class*="nav"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 14px 12px 6px 12px !important;
    position: relative !important;
    z-index: 50 !important;
    background: #030712 !important;
  }

  /* Keep nav links in a neat horizontal wrapping row */
  .nav-links, nav ul, .menu {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px 16px !important;
    margin: 10px 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .nav-links a, nav ul li a {
    font-size: 13px !important;
    color: #94A3B8 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  /* 2. TICKER BAR (Full clearance below menu) */
  .ticker, .ticker-wrap, .ticker-bar, [class*="ticker"], [class*="status-bar"] {
    display: flex !important;
    width: 100% !important;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
    clear: both !important;
    position: relative !important;
    z-index: 10 !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    font-size: 12px !important;
    padding: 6px 12px !important;
    background: rgba(15, 23, 42, 0.7) !important;
  }

  /* 3. 3D SPINNING GLOBE (Centered ambient background) */
  canvas, #globe-canvas, .globe-wrapper, .canvas-container, [class*="globe"] {
    position: absolute !important;
    top: 110px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 320px !important;
    height: 320px !important;
    opacity: 0.35 !important; /* Semi-transparent so all text stays 100% readable */
    pointer-events: none !important; /* Allows tapping through to buttons */
    z-index: 1 !important;
  }

  /* 4. HERO SECTION (Brings title above the cards) */
  .hero-content, .hero-text, [class*="hero-text"], [class*="hero-title-wrap"] {
    position: relative !important;
    z-index: 5 !important;
    text-align: center !important;
    margin: 20px auto 30px auto !important;
    padding: 0 16px !important;
  }

  h1, .hero-title, [class*="hero"] h1 {
    font-size: clamp(32px, 9vw, 44px) !important;
    text-align: center !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
  }

  p, .subtitle {
    font-size: 15px !important;
    line-height: 1.55 !important;
    text-align: center !important;
    max-width: 520px !important;
    margin: 0 auto 16px auto !important;
  }

  /* 5. THE 4 VIP CARDS (Full-width single column) */
  .cards-container, .cards-grid, [class*="vip-grid"], [class*="cards"], .grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 16px !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 5 !important;
  }

  .card, [class*="card"] {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 6. FOUNDING EYE SIGNUP FORM */
  #mour_signup_container, .form-container, form, [class*="form"] {
    width: 100% !important;
    max-width: 480px !important;
    margin: 28px auto !important;
    position: relative !important;
    z-index: 5 !important;
  }

  #mour_signup_container div[style*="grid"], form div[style*="grid"], .form-row {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  input, select, textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
  }

  .cta-btn, button, #mour_submit_btn {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}
/* ==========================================================
   MOUR APP — ULTIMATE MOBILE FIX (ALL DEVICES)
   ========================================================== */
html, body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

@media (max-width: 1024px) {

  /* 1. TOP NAVIGATION BAR: Center & Fit Screen */
  header, nav, .navbar, .nav-container, [class*="nav"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 14px 16px 6px 16px !important;
    overflow: hidden !important;
    background: #030712 !important;
  }

  .nav-links, nav ul, .menu, [class*="menu"] {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px 14px !important;
    width: 100% !important;
    margin: 8px 0 !important;
    padding: 0 !important;
  }

  .nav-links a, nav ul li a, .menu a {
    font-size: 13px !important;
    color: #94A3B8 !important;
    white-space: nowrap !important;
  }

  /* 2. TICKER BAR */
  .ticker, .ticker-wrap, .ticker-bar, [class*="ticker"], [class*="status-bar"] {
    display: flex !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding: 8px 12px !important;
    font-size: 11px !important;
  }

  /* 3. 3D SPINNING GLOBE: Centered Background */
  canvas, #globe-canvas, .globe-wrapper, .canvas-container {
    position: absolute !important;
    top: 90px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 280px !important;
    height: 280px !important;
    max-width: 85vw !important;
    opacity: 0.3 !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }

  /* 4. THE 4 VIP CARDS: 1 Clean Full-Width Column */
  div[style*="grid"], [style*="grid-template-columns"], .cards-container, .cards-grid, [class*="grid"], [class*="cards"] {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 16px !important;
    padding: 0 14px !important;
  }

  .card, [class*="card"], div[style*="border-radius"][style*="border"] {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Prevent broken words inside cards */
  .card h3, .card h4, [class*="card"] h3, [class*="card"] h4, [class*="card"] div {
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  /* 5. CHECKBOX & FORM FIX (Prevents crushed label text) */
  input[type="checkbox"], input[type="radio"] {
    width: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    height: 20px !important;
    margin: 2px 10px 0 0 !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    accent-color: #00E5FF !important;
  }

  /* Checkbox wrapper row */
  div[style*="align-items: flex-start"], div[style*="display: flex; gap: 8px"] {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
  }

  /* Checkbox label takes full remaining width */
  div[style*="align-items: flex-start"] label,
  label[for="mour_age"], label[for="mour_terms"] {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: calc(100% - 32px) !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: #94A3B8 !important;
    word-break: normal !important;
    text-align: left !important;
  }

  /* Regular text inputs */
  input:not([type="checkbox"]):not([type="radio"]), select, textarea {
    width: 100% !important;
    font-size: 16px !important;
  }

  /* 6. HERO TITLE & CTA BUTTONS */
  h1, .hero-title, [class*="hero"] h1 {
    font-size: clamp(28px, 8vw, 40px) !important;
    text-align: center !important;
    line-height: 1.2 !important;
  }

  .cta-btn, button, #mour_submit_btn {
    width: 100% !important;
  }
}
<style>
/* ==========================================================
   MOUR APP — PURE VERTICAL MOBILE LAYOUT (PORTRAIT PHONES)
   ========================================================== */
@media screen and (max-width: 768px) {

  /* 1. Stop sideways scrolling */
  html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  * { box-sizing: border-box !important; }

  /* 2. Top Header: Center Logo & Wrap Menu Links (No "EA" Cutoff) */
  header, nav, .navbar, .nav-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 12px 10px !important;
    background: #030712 !important;
  }

  .nav-links, nav ul, .menu {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px 14px !important;
    width: 100% !important;
    margin: 10px 0 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .nav-links a, nav ul li a, .menu a {
    font-size: 13px !important;
    color: #94A3B8 !important;
    white-space: nowrap !important;
  }

  /* 3. Ticker Bar: Full Width & Scrollable */
  .ticker, .ticker-wrap, .ticker-bar, [class*="ticker"] {
    width: 100% !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding: 8px 12px !important;
    font-size: 11px !important;
  }

  /* 4. 3D Spinning Globe: Centered Behind Headline */
  canvas, #globe-canvas, .globe-wrapper, .canvas-container {
    position: absolute !important;
    top: 100px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 260px !important;
    height: 260px !important;
    opacity: 0.35 !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }

  /* 5. Main Hero Title */
  h1, .hero-title, [class*="hero"] h1 {
    font-size: clamp(26px, 8vw, 36px) !important;
    text-align: center !important;
    line-height: 1.2 !important;
    margin: 16px auto !important;
    padding: 0 12px !important;
  }

  /* 6. Stack the 4 VIP Cards into 1 Vertical Column */
  div[style*="grid"], [style*="grid-template-columns"], .cards-container, .cards-grid, [class*="grid"] {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 16px !important;
    padding: 0 14px !important;
  }

  .card, [class*="card"], div[style*="border-radius"][style*="border"] {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Prevent split words like "Enrollme nt" */
  h2, h3, h4, .card h3, [class*="title"], p {
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  /* 7. Checkboxes: Checkbox on Left, Text on Right */
  input[type="checkbox"], input[type="radio"] {
    width: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    margin: 2px 10px 0 0 !important;
    accent-color: #00E5FF !important;
  }

  div[style*="align-items: flex-start"], div[style*="display: flex; gap: 8px"] {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    width: 100% !important;
    margin-bottom: 12px !important;
  }

  div[style*="align-items: flex-start"] label,
  label[for="mour_age"], label[for="mour_terms"] {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: calc(100% - 32px) !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    text-align: left !important;
  }

  /* 8. Full Width Inputs & Buttons */
  input:not([type="checkbox"]):not([type="radio"]), select, textarea, button, .cta-btn {
    width: 100% !important;
    font-size: 16px !important;
  }
}
</style>