@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&display=swap');

:root {
  --bg: #070b14;
  --bg2: #0d1220;
  --neon-cyan: #00f0ff;
  --neon-purple: #a855f7;
  --neon-pink: #ff2d78;
  --text: #e8eaf6;
  --text-muted: #8892aa;
  --border: rgba(0, 240, 255, 0.15);
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 60px rgba(0, 240, 255, 0.15);
  --glow-purple: 0 0 20px rgba(168, 85, 247, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Stars Background ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 70%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 15%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 55%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 85%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 40%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 10% 60%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 30%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 45%, rgba(255,255,255,0.3) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  text-decoration: none;
  text-shadow: var(--glow-cyan);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--neon-cyan);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--neon-cyan);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .word-space {
  color: var(--text);
}

.hero h1 .word-cutter {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--neon-cyan);
  color: var(--bg);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.7), 0 0 80px rgba(0, 240, 255, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
  transform: translateY(-3px);
}

/* ─── Hero Tagline ─── */
.hero-tagline {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--neon-pink);
  text-shadow: 0 0 20px rgba(255, 45, 120, 0.5);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

/* ─── Play Store Button Variant ─── */
.btn-play {
  background: linear-gradient(135deg, #34a853, #0f9d58);
  box-shadow: 0 0 20px rgba(52, 168, 83, 0.4), 0 0 60px rgba(52, 168, 83, 0.1);
}

.btn-play:hover {
  box-shadow: 0 0 30px rgba(52, 168, 83, 0.6), 0 0 80px rgba(52, 168, 83, 0.2);
}

/* ─── Divider line ─── */
.neon-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0.3;
  margin: 80px 0;
}

/* ─── Screenshots ─── */
.screenshots {
  position: relative;
  z-index: 1;
  padding: 0 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  margin-top: -40px;
  margin-bottom: 50px;
}

.screenshots-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-cyan) transparent;
}

.screenshots-track::-webkit-scrollbar {
  height: 6px;
}

.screenshots-track::-webkit-scrollbar-track {
  background: transparent;
}

.screenshots-track::-webkit-scrollbar-thumb {
  background: rgba(0, 240, 255, 0.3);
  border-radius: 3px;
}

.screenshot-card {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: center;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(0, 240, 255, 0.15);
  background: rgba(13, 18, 32, 0.6);
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.screenshot-card:hover {
  border-color: rgba(0, 240, 255, 0.5);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 240, 255, 0.15), 0 8px 32px rgba(0, 0, 0, 0.5);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-card-wide {
  width: 380px;
}

/* ─── Features ─── */
.features {
  position: relative;
  z-index: 1;
  padding: 0 24px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text);
}

.section-title span {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(13, 18, 32, 0.8);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(0,240,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(0, 240, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 240, 255, 0.1);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CTA ─── */
.cta {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px 100px;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.cta-title span {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.cta-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 36px;
}

/* ─── Footer ─── */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 50px 24px;
  text-align: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  list-style: none;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ─── Privacy Policy Page ─── */
.policy-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  position: relative;
  z-index: 1;
}

.policy-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  margin-bottom: 8px;
}

.policy-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.policy-page h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--neon-cyan);
  margin-top: 40px;
  margin-bottom: 12px;
}

.policy-page p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.policy-page ul {
  color: var(--text-muted);
  padding-left: 24px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.policy-page a {
  color: var(--neon-cyan);
  text-decoration: none;
}

.policy-page a:hover {
  text-decoration: underline;
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .screenshot-card { width: 220px; }
  .screenshot-card-wide { width: 320px; }
  .section-subtitle { margin-top: -30px; font-size: 0.95rem; }
}
