/* ============================================
   GEEK WORLD PR - Coming Soon / Newsletter
   Dark Neon Purple Aesthetic
   ============================================ */

:root {
  --bg-black: #0a0a12;
  --bg-dark: #10101c;
  --bg-card: #16162a;
  --bg-input: #14142a;
  --white: #eeeef6;
  --white-dim: #b0b0cc;
  --white-muted: #7878a0;
  --white-ghost: #3c3c5c;
  --accent: #a855f7;
  --accent-dim: rgba(168, 85, 247, 0.12);
  --accent-glow: rgba(168, 85, 247, 0.25);
  --accent-bright: #c084fc;
  --cta-red: #e01b1b;
  --cta-red-bright: #ff2a2a;
  --cta-red-glow: rgba(255, 42, 42, 0.35);
  --cta-red-dim: rgba(255, 42, 42, 0.12);
  --border: #2a2a4a;
  --border-light: #3a3a5a;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.6);
  --radius: 4px;
  --radius-sm: 2px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--white-ghost) var(--bg-black); }

body {
  font-family: var(--font-body);
  background: var(--bg-black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

/* --- GLOBAL EFFECTS --- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(168, 85, 247, 0.025) 1px, rgba(168, 85, 247, 0.025) 2px);
  pointer-events: none; z-index: 10000;
  animation: scanlineScroll 8s linear infinite;
}
@keyframes scanlineScroll { 0% { background-position: 0 0; } 100% { background-position: 0 100px; } }

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: linear-gradient(rgba(168, 85, 247, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 85, 247, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 9999;
}

#app::before {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none; z-index: 9998;
}

/* --- AMBIENT ORBS --- */
.ambient-orbs { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; will-change: transform; }
.ambient-orb:nth-child(1) { width: 500px; height: 500px; background: radial-gradient(circle, #a855f7 0%, transparent 70%); top: 10%; left: -5%; animation: orbDrift1 25s ease-in-out infinite alternate; }
.ambient-orb:nth-child(2) { width: 400px; height: 400px; background: radial-gradient(circle, #6366f1 0%, transparent 70%); top: 50%; right: -8%; animation: orbDrift2 30s ease-in-out infinite alternate; }
.ambient-orb:nth-child(3) { width: 350px; height: 350px; background: radial-gradient(circle, #e879f9 0%, transparent 70%); bottom: 5%; left: 30%; animation: orbDrift3 22s ease-in-out infinite alternate; }
.ambient-orb:nth-child(4) { width: 250px; height: 250px; background: radial-gradient(circle, #8b5cf6 0%, transparent 70%); top: 30%; left: 50%; animation: orbDrift4 28s ease-in-out infinite alternate; }
@keyframes orbDrift1 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(120px, 80px) scale(1.15); } }
@keyframes orbDrift2 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-100px, -60px) scale(1.1); } }
@keyframes orbDrift3 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(80px, -90px) scale(1.2); } }
@keyframes orbDrift4 { 0% { transform: translate(0, 0) scale(0.9); } 100% { transform: translate(-70px, 50px) scale(1.1); } }

/* --- NOISE --- */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 10001; opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: var(--white-ghost); }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--white); }
img { max-width: 100%; display: block; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border: 1px solid var(--border); background: transparent;
  color: var(--white); font-family: var(--font-display); font-size: 10px; font-weight: 600;
  cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 2px;
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
}
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.06), transparent); transition: left 0.6s ease; }
.btn:hover::before { left: 100%; }
.btn-primary { background: var(--cta-red); color: var(--white); border-color: var(--cta-red); font-weight: 700; animation: btnPrimaryPulse 3s ease-in-out infinite; }
@keyframes btnPrimaryPulse { 0%, 100% { box-shadow: 0 0 12px rgba(255, 42, 42, 0.2); } 50% { box-shadow: 0 0 28px rgba(255, 42, 42, 0.5), 0 0 60px rgba(255, 42, 42, 0.15); } }
.btn-primary:hover { background: var(--cta-red-bright); border-color: var(--cta-red-bright); color: var(--white); box-shadow: 0 0 28px var(--cta-red-glow), 0 0 56px rgba(255, 42, 42, 0.12); animation: none; transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; animation: none; }
.btn-glow { animation: btn-glow-pulse 3s ease-in-out infinite; }
@keyframes btn-glow-pulse { 0%, 100% { box-shadow: 0 0 10px var(--cta-red-dim); } 50% { box-shadow: 0 0 25px var(--cta-red-glow), 0 0 50px rgba(255, 42, 42, 0.12); } }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 60px 24px; overflow: hidden;
  flex: 1;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(168, 85, 247, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(232, 121, 249, 0.05) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; width: 100%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px;
  background: var(--accent-dim); border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 50px; font-family: var(--font-display); font-size: 10px;
  letter-spacing: 2.5px; color: var(--accent-bright); text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease both, badgePulse 3s ease-in-out 1.5s infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
  50% { box-shadow: 0 0 20px 4px rgba(168, 85, 247, 0.15); }
}

.hero-logo { margin: 0 auto 28px; animation: fadeInUp 0.8s ease 0.15s both; }
.hero-logo img {
  height: 160px; width: auto; margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero h1 {
  font-family: var(--font-display); font-size: clamp(30px, 5vw, 52px);
  font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px; line-height: 1.15;
  animation: fadeInUp 0.8s ease 0.5s both, textShimmer 4s ease-in-out 1.5s infinite;
  background: linear-gradient(90deg, var(--white) 0%, var(--accent-bright) 25%, var(--white) 50%, var(--accent-bright) 75%, var(--white) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .accent { color: var(--accent); -webkit-text-fill-color: var(--accent); }

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px); color: var(--white-dim);
  max-width: 480px; margin: 0 auto 12px; line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.45s both;
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInScale { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* ============================================
   NEWSLETTER FORM - GLOW INPUT
   ============================================ */
.newsletter-hero { animation: fadeInUp 0.8s ease 0.6s both; max-width: 500px; margin: 0 auto; }
.hero-cta-text {
  color: var(--white-muted); margin-bottom: 16px;
  text-transform: uppercase; font-family: var(--font-display);
  font-weight: 500; font-size: 10px; letter-spacing: 2px;
}

/* Input wrapper with animated gradient border */
.input-glow-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--cta-red), #22d3ee, var(--accent));
  background-size: 300% 300%;
  animation: inputGlowShift 4s ease infinite, inputEntryPulse 1.5s ease 1.2s;
  transition: box-shadow 0.4s ease;
}
.input-glow-wrap::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--cta-red), #22d3ee, var(--accent));
  background-size: 300% 300%;
  animation: inputGlowShift 4s ease infinite;
  filter: blur(14px);
  opacity: 0.35;
  z-index: -1;
  transition: opacity 0.4s ease;
}
@keyframes inputGlowShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.input-glow-wrap:focus-within {
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.3), 0 0 80px rgba(168, 85, 247, 0.1);
}
.input-glow-wrap:focus-within::before {
  opacity: 0.6;
}

.newsletter-form {
  display: flex; gap: 0; background: var(--bg-input); border-radius: var(--radius-sm);
  overflow: hidden;
}
.newsletter-form input {
  flex: 1; padding: 15px 20px; background: transparent; border: none;
  color: var(--white); font-size: 14px; font-family: var(--font-body); outline: none; min-width: 0;
}
.newsletter-form input::placeholder { color: var(--white-ghost); letter-spacing: 1px; }
.newsletter-form .btn { border: none; border-radius: 0; padding: 15px 28px; flex-shrink: 0; }

.newsletter-msg { margin-top: 12px; font-size: 13px; min-height: 20px; transition: var(--transition); }
.newsletter-disclaimer {
  margin-top: 14px; font-size: 11px; color: var(--white-ghost);
  letter-spacing: 0.5px; animation: fadeInUp 0.8s ease 0.75s both;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-section {
  animation: fadeInUp 0.8s ease 0.8s both;
  max-width: 500px; margin: 32px auto 0;
}
.progress-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.progress-label {
  font-family: var(--font-display); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white-muted);
}
.progress-count {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  color: var(--accent-bright);
}
.progress-track {
  width: 100%; height: 6px; background: rgba(168, 85, 247, 0.1);
  border-radius: 3px; overflow: hidden; position: relative;
}
.progress-fill {
  height: 100%; width: 0%; border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cta-red), var(--accent-bright));
  background-size: 200% 100%;
  animation: progressGradient 3s linear infinite, progressGrow 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
  position: relative;
}
.progress-fill::after {
  content: '';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 12px var(--accent), 0 0 24px var(--accent-glow);
  animation: progressPulse 2s ease-in-out infinite;
}
@keyframes progressGradient { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes progressGrow { from { width: 0%; } to { width: var(--progress, 72%); } }
@keyframes progressPulse {
  0%, 100% { box-shadow: 0 0 8px var(--accent), 0 0 16px var(--accent-glow); }
  50% { box-shadow: 0 0 16px var(--accent), 0 0 32px var(--accent-glow), 0 0 48px rgba(168, 85, 247, 0.15); }
}
.progress-subtext {
  margin-top: 8px; font-size: 11px; color: var(--white-ghost);
  text-align: center; letter-spacing: 0.5px;
}

/* ============================================
   BOTTOM SECTION - GIF + CTA
   ============================================ */
.bottom-section {
  padding: 60px 24px 0;
  position: relative; z-index: 2;
  animation: fadeInUp 0.8s ease 1s both;
}
.bottom-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
}
.bottom-gif {
  flex-shrink: 0; width: 200px; height: 200px;
  border-radius: 16px; overflow: hidden;
  animation: gifFloat 5s ease-in-out infinite;
}
.bottom-gif img {
  width: 100%; height: 100%; object-fit: cover;
}
@keyframes gifFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(0.5deg); }
  75% { transform: translateY(4px) rotate(-0.5deg); }
}
.bottom-text { flex: 1; }
.bottom-text h3 {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px;
  color: var(--accent-bright);
}
.bottom-text p {
  font-size: 14px; color: var(--white-dim); line-height: 1.7;
}

/* ============================================
   SOCIAL ROW
   ============================================ */
.social-row {
  display: flex; justify-content: center; gap: 10px; margin-top: 40px;
  flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.9s both;
}
.social-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
  border: 1px solid var(--border); border-radius: 50px;
  font-size: 12px; color: var(--white-muted); font-weight: 500;
  transition: var(--transition); text-decoration: none;
}
.social-pill:hover { border-color: var(--accent); color: var(--accent-bright); background: var(--accent-dim); transform: translateY(-2px); }
.social-pill-store { border-color: var(--cta-red); color: var(--cta-red); }
.social-pill-store:hover { background: var(--cta-red); color: var(--white); border-color: var(--cta-red); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border); padding: 32px 24px;
  text-align: center; position: relative; z-index: 2;
  background: var(--bg-dark);
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 3px;
  margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.footer-logo img { height: 20px; width: auto; }
.footer p { font-size: 12px; color: var(--white-ghost); margin-bottom: 4px; }
.footer-copy { margin-top: 8px; font-size: 11px; color: var(--white-ghost); }

/* ============================================
   TOAST
   ============================================ */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 5000; display: flex; flex-direction: column; gap: 8px; }
.toast {
  padding: 14px 20px; background: var(--bg-dark); border: 1px solid var(--border);
  color: var(--white); font-size: 13px; font-weight: 500; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  animation: toastIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); min-width: 300px;
}
.toast.success { border-left: 3px solid #22c55e; }
.toast.error { border-left: 3px solid #f87171; }
@keyframes toastIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(120%); opacity: 0; } }

/* ============================================
   ANTI-SCRAPING / IMAGE PROTECTION
   ============================================ */
img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}

.no-copy {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* ============================================
   LANDING ANIMATIONS - STAGGERED REVEALS
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.hero-badge { animation: fadeInUp 0.8s ease 0.2s both, badgePulse 3s ease-in-out 1.5s infinite, glitchIn 0.6s ease 0.2s both; }
.hero-logo { animation: fadeInScale 0.9s ease 0.35s both; }
.hero-subtitle { animation: fadeInUp 0.8s ease 0.65s both; }
.newsletter-hero { animation: fadeInUp 0.8s ease 0.8s both; }
.progress-section { animation: fadeInUp 0.8s ease 1s both; }
.social-row { animation: fadeInUp 0.8s ease 1.15s both; }
.bottom-section { animation: fadeInUp 0.8s ease 1.3s both; }

@keyframes glitchIn {
  0% { opacity: 0; transform: translateY(24px) skewX(-2deg); filter: blur(4px); }
  50% { opacity: 0.8; transform: translateY(4px) skewX(1deg); filter: blur(0); }
  70% { transform: translateY(-2px) skewX(0deg); }
  100% { opacity: 1; transform: translateY(0) skewX(0deg); filter: blur(0); }
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Input pulse ring on page load */
@keyframes inputEntryPulse {
  0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.6); }
  50% { box-shadow: 0 0 30px 10px rgba(168, 85, 247, 0.3); }
  100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

/* Bottom section hover */
.bottom-section:hover .bottom-gif {
  opacity: 0.9;
}

/* Social pill stagger */
.social-pill:nth-child(1) { animation: fadeInUp 0.5s ease 1.2s both; }
.social-pill:nth-child(2) { animation: fadeInUp 0.5s ease 1.3s both; }
.social-pill:nth-child(3) { animation: fadeInUp 0.5s ease 1.4s both; }
.social-pill:nth-child(4) { animation: fadeInUp 0.5s ease 1.5s both; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero { padding: 40px 20px; min-height: 100svh; }
  .hero-logo img { height: 120px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
  .social-row { gap: 8px; }
  .social-pill { padding: 8px 14px; font-size: 11px; }
  .toast { min-width: auto; right: 0; }
  .bottom-inner { flex-direction: column; text-align: center; gap: 24px; }
  .bottom-gif { width: 160px; height: 160px; }
  .progress-section { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-badge { font-size: 9px; padding: 6px 14px; }
  .social-pill span { display: none; }
  .social-pill { padding: 10px; }
  .bottom-gif { width: 140px; height: 140px; }
}