/* ══════════════════════════════════════
   Pokémon GO Hack Master — style.css
   https://pokemongo.space
   ══════════════════════════════════════ */

/* ── RESET ── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Exo 2', sans-serif;
  background: #0a0e2e;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── STARFIELD ── */
.stars-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 20% 20%, #1a2a6c 0%, #0a0e2e 60%);
  z-index: 0;
  pointer-events: none;
}
.stars-bg::before {
  content: '★ · ✦ · ★ · ✦ · ★ · ✦ · ★ · ✦ · ★ · ✦ · ★ · ✦ · ★';
  position: absolute;
  top: 18px;
  left: 0; right: 0;
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 14px;
}

/* ── NAVBAR ── */
nav {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(0,0,0,0.55);
  border-bottom: 2px solid #e53935;
  backdrop-filter: blur(6px);
}
.nav-logo {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 900;
  color: #FFD600;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255,214,0,0.5);
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links .nav-cta {
  background: #e53935;
  color: #fff !important;
  opacity: 1 !important;
  padding: 7px 18px;
  border-radius: 20px;
  transition: background 0.2s !important;
}
.nav-links .nav-cta:hover { background: #b71c1c !important; }

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 56px 24px 36px;
}

.pokeball {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  display: block;
  animation: float 3s ease-in-out infinite, glowpulse 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes glowpulse {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(229,57,53,0.6)); }
  50%       { filter: drop-shadow(0 0 44px rgba(255,214,0,0.8)); }
}

.hero-badge {
  display: inline-block;
  background: rgba(229,57,53,0.18);
  border: 1px solid #e53935;
  color: #FF7043;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(22px, 5vw, 42px);
  font-weight: 900;
  color: #FFD600;
  text-shadow: 0 0 24px rgba(255,214,0,0.4);
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero h1 span { color: #fff; }

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 30px;
}

/* ── BUTTONS ── */
.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-main {
  background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(229,57,53,0.5);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(229,57,53,0.65);
}
.btn-ghost {
  background: transparent;
  color: #FFD600;
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  border-radius: 32px;
  border: 2px solid #FFD600;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.15s;
}
.btn-ghost:hover { background: rgba(255,214,0,0.1); }

/* ── PLATFORM PILLS ── */
.platform-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.plat-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.plat-pill span { font-size: 20px; }

/* ── TICKER ── */
.ticker {
  position: relative;
  z-index: 5;
  background: rgba(229,57,53,0.14);
  border-top: 1px solid rgba(229,57,53,0.35);
  border-bottom: 1px solid rgba(229,57,53,0.35);
  padding: 10px 0;
  overflow: hidden;
  margin-bottom: 60px;
}
.ticker-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #FFD600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: ticker 18s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SHARED SECTION LABELS ── */
.sec-eyebrow {
  text-align: center;
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FFD600;
  opacity: 0.65;
  margin-bottom: 8px;
}
.sec-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}

/* ── FEATURES ── */
.features {
  position: relative;
  z-index: 5;
  padding: 0 32px 60px;
  max-width: 960px;
  margin: 0 auto;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.feat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.feat-card:hover {
  border-color: rgba(229,57,53,0.5);
  background: rgba(229,57,53,0.07);
}
.feat-emoji { font-size: 30px; display: block; margin-bottom: 10px; }
.feat-name {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #FFD600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.feat-desc { font-size: 12px; color: rgba(255,255,255,0.48); line-height: 1.45; }

/* ── DIVIDER ── */
.ornament {
  max-width: 900px;
  margin: 0 auto 50px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  position: relative;
  z-index: 5;
}
.ornament::after {
  content: '◆';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: #0a0e2e;
  padding: 0 10px;
  color: #e53935;
  font-size: 12px;
}

/* ── STEPS ── */
.steps-section {
  position: relative;
  z-index: 5;
  padding: 0 32px 60px;
  max-width: 720px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #e53935;
  font-family: 'Orbitron', monospace;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(229,57,53,0.55);
}
.step-body {}
.step-title {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #FFD600;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.step-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── CTA ── */
.cta-box {
  position: relative;
  z-index: 5;
  max-width: 640px;
  margin: 0 auto 60px;
  background: rgba(229,57,53,0.1);
  border: 2px solid rgba(229,57,53,0.4);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
}
.cta-box h2 {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 900;
  color: #FFD600;
  margin-bottom: 8px;
}
.cta-box p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 18px 32px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
footer p {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  line-height: 1.8;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 46, 0.9);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #e53935;
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 30px rgba(229,57,53,0.4);
}
.modal-logo {
  max-width: 180px;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.modal-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}
.progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #e53935, #FFD600);
  transition: width 0.1s linear;
}
.modal-content video {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── FAQ (SEO) ── */
.faq-section {
  position: relative;
  z-index: 5;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px 60px;
}
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq-item h3 {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #FFD600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.faq-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav { padding: 14px 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 40px 16px 28px; }
  .features, .steps-section, .faq-section { padding-left: 16px; padding-right: 16px; }
  .cta-box { margin-left: 16px; margin-right: 16px; }
}
