/* ============================================
   SAAD STORE — ACID NEON DESIGN SYSTEM
   Clash Display + Outfit | Dark App Marketplace
   ============================================ */

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

:root {
  --neon-green: #CCFF00;
  --neon-pink: #FF3CAC;
  --neon-blue: #00D4FF;
  --bg-black: #0D0D0D;
  --bg-card: #141414;
  --bg-card2: #1A1A1A;
  --border: rgba(255,255,255,0.07);
  --border-glow: rgba(204,255,0,0.25);
  --text-primary: #F0F0F0;
  --text-secondary: #888;
  --text-muted: #555;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-neon: 0 0 30px rgba(204,255,0,0.15);
  --shadow-pink: 0 0 30px rgba(255,60,172,0.15);
}

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

html { scroll-behavior: smooth; }

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: var(--neon-green); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--neon-green); color: #000; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon { font-size: 1.2rem; }
.logo-accent { color: var(--neon-green); }

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

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

.nav-cta {
  background: var(--neon-green);
  color: #000;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(204,255,0,0.3);
}

.nav-cta:hover {
  background: #fff;
  box-shadow: 0 0 30px rgba(204,255,0,0.5);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 20px 5%;
  border-bottom: 1px solid var(--border);
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--neon-green); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(204,255,0,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: floatGlow 8s ease-in-out infinite;
}

.glow2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,60,172,0.1) 0%, transparent 70%);
  bottom: 0; right: -100px;
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
}

.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(204,255,0,0.1);
  border: 1px solid rgba(204,255,0,0.3);
  color: var(--neon-green);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-accent {
  color: var(--neon-green);
  text-shadow: 0 0 40px rgba(204,255,0,0.4);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.stat { display: flex; flex-direction: column; align-items: center; }

.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon-green);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-green);
  color: #000;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 40px rgba(204,255,0,0.35);
  animation: fadeInUp 0.7s ease 0.4s both;
  margin-bottom: 60px;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(204,255,0,0.5);
  background: #fff;
}

/* TICKER */
.ticker-wrap {
  width: 100vw;
  overflow: hidden;
  background: rgba(204,255,0,0.05);
  border-top: 1px solid rgba(204,255,0,0.15);
  border-bottom: 1px solid rgba(204,255,0,0.15);
  padding: 12px 0;
  position: absolute;
  bottom: 0; left: 0;
}

.ticker {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  width: max-content;
}

.ticker span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-green);
  letter-spacing: 0.5px;
}

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

/* ============================================
   SEARCH SECTION
   ============================================ */
.search-section {
  padding: 60px 5% 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
  margin-bottom: 24px;
}

.search-wrap:focus-within {
  border-color: var(--neon-green);
  box-shadow: 0 0 30px rgba(204,255,0,0.15);
}

.search-icon {
  font-size: 1.1rem;
  margin-right: 12px;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 18px 0;
}

.search-input::placeholder { color: var(--text-muted); }

.search-clear {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px 8px;
  border-radius: 50%;
  transition: all 0.2s;
  display: none;
}

.search-clear:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
}

.search-clear.visible { display: block; }

/* FILTER TABS */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.filter-btn:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.filter-btn.active {
  background: var(--neon-green);
  border-color: var(--neon-green);
  color: #000;
  font-weight: 700;
}

.results-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.results-count span { color: var(--neon-green); font-weight: 600; }

/* ============================================
   APPS GRID
   ============================================ */
.apps-section {
  padding: 20px 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

/* APP CARD */
.app-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: default;
  animation: cardFadeIn 0.4s ease both;
}

.app-card:hover {
  border-color: rgba(204,255,0,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 20px rgba(204,255,0,0.08);
  background: var(--bg-card2);
}

.app-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top left, rgba(204,255,0,0.04) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.app-card:hover .app-card-glow { opacity: 1; }

.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.app-info {
  flex: 1;
  min-width: 0;
}

.app-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  letter-spacing: 0.3px;
  border: 1px solid var(--border);
}

.tag.hot {
  background: rgba(255,60,172,0.1);
  color: var(--neon-pink);
  border-color: rgba(255,60,172,0.2);
}

.app-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.app-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--neon-green);
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(204,255,0,0.3);
}

.buy-btn {
  background: var(--neon-green);
  color: #000;
  padding: 7px 18px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.buy-btn:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(204,255,0,0.4);
}

/* NO RESULTS */
.no-results {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.no-results-icon { font-size: 3rem; margin-bottom: 16px; }
.no-results h3 { font-size: 1.3rem; color: var(--text-secondary); margin-bottom: 8px; }
.no-results p { font-size: 0.9rem; }
.no-results a { color: var(--neon-green); text-decoration: none; }

/* ============================================
   HOW TO BUY
   ============================================ */
.how-section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 50px;
  line-height: 1.1;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  width: 200px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.step-card:hover {
  border-color: rgba(204,255,0,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
}

.step-num {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--neon-green);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.step-icon { font-size: 2rem; margin-bottom: 12px; margin-top: 8px; }

.step-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.step-card strong { color: var(--neon-green); }

.step-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* UPI BOX */
.upi-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(204,255,0,0.05);
  border: 1px solid rgba(204,255,0,0.2);
  border-radius: var(--radius);
  padding: 24px 40px;
  position: relative;
}

.upi-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.upi-id {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neon-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  letter-spacing: -0.5px;
}

.upi-id:hover { text-shadow: 0 0 20px rgba(204,255,0,0.5); }
.copy-icon { font-size: 1rem; }

.upi-copied {
  font-size: 0.8rem;
  color: var(--neon-green);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.upi-copied.show { opacity: 1; }

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: 80px 5%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  margin-top: -30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  text-align: left;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(204,255,0,0.3);
  box-shadow: var(--shadow-neon);
}

.contact-card.whatsapp:hover { border-color: rgba(37,211,102,0.4); box-shadow: 0 0 30px rgba(37,211,102,0.1); }
.contact-card.call:hover { border-color: rgba(0,212,255,0.4); box-shadow: 0 0 30px rgba(0,212,255,0.1); }
.contact-card.email:hover { border-color: rgba(255,60,172,0.4); box-shadow: var(--shadow-pink); }

.contact-card-icon { font-size: 1.6rem; flex-shrink: 0; }

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

.contact-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-card-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-arrow {
  color: var(--text-muted);
  font-size: 1rem;
  transition: transform 0.2s;
}

.contact-card:hover .contact-arrow { transform: translateX(4px); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 50px 5% 30px;
  text-align: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

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

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }

  .hero { padding: 100px 5% 80px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.4rem; }

  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .step-card { width: 100%; max-width: 300px; }

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

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

  .filter-tabs { gap: 8px; }
  .filter-btn { font-size: 0.75rem; padding: 7px 14px; }

  .upi-id { font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -1px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .section-title { letter-spacing: -1px; }
}