:root{
  --bg: #000;
  --panel: rgba(255,255,255,0.05);
  --accent1: #4158d0;
  --accent2: #c850c0;
  --neon: #00ff88;
  --muted: #ccc;
  --text: #e0e0e0;
  --glass-blur: 10px;
}

/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Sans Serif', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: rgba(20, 20, 20, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  background: linear-gradient(90deg,#183153,#7749f8,#1d1d8f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links li a:hover {
  background: linear-gradient(90deg, var(--accent1), var(--accent2) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Sidebar base */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background: #111;
  overflow-x: hidden;
  transition: 0.4s;
  padding-top: 60px;
  z-index: 2000;
}

/* Sidebar content */
.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 15px 25px;
}

.sidebar ul li a {
  text-decoration: none;
  font-size: 1.2em;
  color: #e0e0e0;
  display: block;
  transition: 0.3s;
}

.sidebar ul li a:hover {
  background: linear-gradient(90deg, #4158d0, #c850c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hamburger Button */
.hamburger {
  background: linear-gradient(90deg, #4158d0, #c850c0);
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: linear-gradient(90deg, #c850c0, #4158d0);
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
}

.hero-content h1 {
  font-size: 3em;
  color: #fff;
}

.hero-content h1 span {
  background: linear-gradient(90deg, var(--accent1) 0%, var(--accent2) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-content p {
  margin: 20px 0;
  font-size: 1.2em;
  color: var(--muted);
}

.hero {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 10%;
  background: var(--bg);
  color: var(--text);
  flex-wrap: wrap;
}

.hero-display {
  background: var(--panel);
  border-radius: 15px;
  backdrop-filter: blur(var(--glass-blur));
  padding: 25px 30px;
  flex: 1 1 280px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.08);
  transition: transform 0.3s ease;
}
.hero-display:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 22px rgba(0, 255, 136, 0.12);
}
.hero-display h2 {
  color: var(--neon);
  margin-bottom: 15px;
  font-size: 1.8em;
}
.hero-display p {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: var(--muted);
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.price-btn, .demo-btn {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 1em;
  font-weight: 600;
  transition: background 0.3s ease;
}

.price-btn {
  background: linear-gradient(90deg, var(--accent1) 0%, var(--accent2) 90%);
  color: #fff;
}
.price-btn:hover {
  background: linear-gradient(90deg, var(--accent2) 0%, var(--accent1) 90%);
}

.demo-btn {
  background: #222;
  color: var(--neon);
}
.demo-btn:hover {
  background: var(--neon);
  color: #000;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    gap: 20px;
  }
  .hero-display {
    max-width: 100%;
  }
}

/* Global Gradient Button (fallback) */
button {
  background: linear-gradient(90deg, var(--accent1) 0%, var(--accent2) 90%);
  color: #fff;
  border: none;
  padding: 11px 24px;
  font-size: 0.9em;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.25s;
  font-weight: 600;
}
button:hover {
  background: linear-gradient(90deg, var(--accent2) 0%, var(--accent1) 90%);
  transform: translateY(-2px);
}

/* Features Section */
.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 60px 10%;
  background: #111;
}
.card {
  flex: 1;
  background: var(--panel);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(var(--glass-blur));
  transition: transform 0.3s, background 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  background: rgba(36, 50, 183, 0.15);
}
.card h2 {
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: var(--bg);
  border-top: 1px solid #222;
  font-size: 0.9em;
  color: #888;
}

/* ---------------------------
   LOGIN / AUTH STYLES (NEW)
   --------------------------- */

/* Centered login container (used for login.html or modal) */
.login-container {
  width: 420px;
  max-width: calc(100% - 40px);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.015));
  border-radius: 14px;
  padding: 28px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 40px rgba(65,88,208,0.03);
  border: 1px solid rgba(255,255,255,0.03);
}

/* Title */
.login-container h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
}

/* Inputs */
.login-container .field {
  margin: 12px 0;
}
.login-container input[type="email"],
.login-container input[type="password"],
.login-container input[type="tel"],
.login-container .otp-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 8px;
  outline: none;
  font-size: 0.95rem;
  transition: box-shadow 0.18s, transform 0.12s;
}
.login-container input::placeholder {
  color: #999;
}

.login-container input:focus {
  box-shadow: 0 4px 18px rgba(65,88,208,0.12), 0 0 12px rgba(0,255,136,0.05);
  transform: translateY(-1px);
  border-color: rgba(65,88,208,0.5);
}

/* OTP inline inputs (if using 6 single-char boxes) */
.otp-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 8px 0 18px;
}
.otp-row input {
  width: 46px;
  height: 56px;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 6px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
  color: var(--text);
}
.otp-row input:focus {
  box-shadow: 0 6px 18px rgba(65,88,208,0.12), 0 0 10px rgba(0,255,136,0.06);
  border-color: rgba(65,88,208,0.6);
}

/* Primary login button */
.login-primary {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--accent1) 0%, var(--accent2) 90%);
  color: #fff;
  transition: transform 0.15s, box-shadow 0.15s;
}
.login-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(200,80,192,0.08);
}

/* "Or continue with" separator */
.or-sep {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: #aaa;
  font-size: 0.9rem;
}
.or-sep::before,
.or-sep::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.03);
}

/* Social login buttons row */
.social-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Generic auth button */
.auth-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.12s, box-shadow 0.12s;
}

/* Icons placeholder (if you add icon <span class="icon">) */
.auth-btn .icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
}

/* Variants */
.auth-btn.google {
  background: linear-gradient(180deg, #fff, #fafafa);
  color: #111;
  border: 1px solid rgba(0,0,0,0.08);
}
.auth-btn.google:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

.auth-btn.apple {
  background: linear-gradient(180deg, #0b0b0b, #161616);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.04);
}
.auth-btn.apple:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255,255,255,0.03); }

.auth-btn.microsoft {
  background: linear-gradient(90deg, #2b90ff 0%, #8a2be2 100%);
  color: #fff;
  border: none;
}
.auth-btn.microsoft:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(138,43,226,0.12); }

.auth-btn.phone {
  background: rgba(0,255,136,0.06);
  color: var(--neon);
  border: 1px solid rgba(0,255,136,0.12);
}
.auth-btn.phone:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,255,136,0.06); }

/* small helper for buttons with text + small note */
.btn-note {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 6px;
  text-align: center;
}

/* Status text */
#status {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

/* recaptcha placeholder styling (centered) */
#recaptcha-container {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

/* Modal style (optional, if you build modal) */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: grid;
  place-items: center;
  z-index: 2000;
}
.modal .panel {
  width: 480px;
  max-width: calc(100% - 32px);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 14px;
  padding: 24px;
}

/* tiny responsiveness */
@media (max-width: 600px) {
  .nav-links { display:none; }
  .login-container { width: 94%; padding: 18px; margin: 20px auto; }
  .hero-content h1 { font-size: 2rem; }
  .otp-row input { width: 44px; height: 52px; font-size: 1.05rem; }
}

/* Accessibility / focus outlines */
.auth-btn:focus, .login-primary:focus, input:focus {
  outline: 3px solid rgba(65,88,208,0.12);
  outline-offset: 2px;
}

/* Contact Page */
.contact {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.contact h1 {
  font-size: 2.5em;
  background: linear-gradient(90deg, #4158d0, #c850c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.contact p {
  color: #ccc;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 1em;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #00ff88;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #4158d0, #c850c0);
  color: #fff;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #c850c0, #4158d0);
  transform: translateY(-2px);
}

/* ===== Products Page Styling ===== */
.products {
  text-align: center;
  padding: 80px 10%;
  background: #111;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.products h1 {
  font-size: 2.8em;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #4158d0, #c850c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.products p {
  font-size: 1.3em;
  margin-bottom: 50px;
  color: #ccc;
}

.product-section {
  margin: 50px 0;
  padding: 40px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.explore-btn {
  display: inline-block;
  text-decoration: none;   /* underline hatane ke liye */
  background: linear-gradient(90deg, #4158d0, #c850c0);
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  transition: transform 0.2s, background 0.3s;
}

.explore-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #c850c0, #4158d0);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #1a1a1a;
  color: #fff;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.navbar .nav-links li a:hover {
  color: #ff9800;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
}
.product-card {
  background: rgba(255,255,255,0.15);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}
.product-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.product-card p {
  margin-bottom: 15px;
  color: #444;
}
.product-card .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #2575fc;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.product-card .btn:hover {
  background: #6a11cb;
}

/* Hero Products Special */
.hero-products {
  padding: 50px 20px;
}

.hero-products .product-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* ================= Products Grid ================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 50px 10%;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.product-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.product-card p {
  color: #ccc;
  margin-bottom: 15px;
}

.product-card .btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #4158d0, #c850c0);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.product-card .btn:hover {
  background: linear-gradient(90deg, #c850c0, #4158d0);
}

/* ================= Responsive Design ================= */
@media (max-width: 900px) {
  /* Navbar */
  .nav-links {
    display: none; /* mobile pe direct navbar links hide */
  }

  .logo {
    font-size: 1.5em;
  }

  /* Hero section */
  .hero {
    flex-direction: column;
    padding: 30px 5%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 1em;
  }

  /* Product grid */
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
  }

  .product-card {
    padding: 15px;
  }

  .product-card h3 {
    font-size: 1.1em;
  }

  .product-card p {
    font-size: 0.9em;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.6em;
  }

  .hero-content p {
    font-size: 0.9em;
  }

  .product-card img {
    max-height: 150px;
    object-fit: cover;
  }

  footer {
    font-size: 0.8em;
    padding: 15px;
  }
}

/* ================= Responsive Design ================= */
@media (max-width: 900px) {
  /* Navbar */
  .nav-links {
    display: none; /* mobile pe direct navbar links hide */
  }

  .logo {
    font-size: 1.5em;
  }

  /* Hero section */
  .hero {
    flex-direction: column;
    padding: 30px 5%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 1em;
  }

  /* Product grid */
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
  }

  .product-card {
    padding: 15px;
  }

  .product-card h3 {
    font-size: 1.1em;
  }

  .product-card p {
    font-size: 0.9em;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.6em;
  }

  .hero-content p {
    font-size: 0.9em;
  }

  .product-card img {
    max-height: 150px;
    object-fit: cover;
  }

  footer {
    font-size: 0.8em;
    padding: 15px;
  }
}

/* Feature Section Responsive */
@media (max-width: 900px) {
  .features {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .feature {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 600px) {
  .feature {
    max-width: 100%;
    padding: 15px;
  }

  .features h2 {
    font-size: 1.5em;
  }

  .feature p {
    font-size: 0.9em;
  }
}

/* ===========================
   COMING SOON - FUTURISTIC NEON GLASS
   Paste this at the END of your style.css
   Applies only when <body class="comingsoon-page"> is present
   =========================== */

.comingsoon-page {
  --bg-1: #071228;
  --bg-2: #00121a;
  --glass: rgba(255,255,255,0.04);
  --neon-a: #57f2d2;
  --neon-b: #6f6bff;
  --neon-c: #ff4dd2;
  --muted: #bfc7d9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 40px 20px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  animation: cs-bg-fade 900ms ease-out forwards;
}

/* animated soft radial gradient for neon motion (pseudo element) */
.comingsoon-page::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(35% 30% at 10% 20%, rgba(111,107,255,0.12), transparent 20%),
    radial-gradient(30% 25% at 90% 80%, rgba(255,77,210,0.12), transparent 18%),
    radial-gradient(40% 30% at 50% 50%, rgba(87,242,210,0.06), transparent 25%);
  filter: blur(40px);
  transform: scale(1.05);
  z-index: 0;
  animation: float-neon 8s ease-in-out infinite;
  pointer-events: none;
}

/* glass card container */
.comingsoon-page .cs-card {
  width: min(880px, 94%);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-radius: 16px;
  padding: 48px 40px;
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow:
    0 8px 30px rgba(3,6,23,0.6),
    0 2px 10px rgba(87,242,210,0.03),
    inset 0 1px 0 rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
  text-align: center;
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  animation: cs-card-entrance 700ms ease-out 250ms forwards;
}

/* small decorative neon lines */
.comingsoon-page .cs-card::after {
  content: "";
  position: absolute;
  left: -10%;
  top: -30%;
  width: 140%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
  transform: rotate(-12deg);
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* subtitle / small */
.comingsoon-page .cs-sub {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(6px);
  animation: cs-text-in 600ms ease forwards;
  animation-delay: 450ms;
}

/* main title with neon glow animation */
.comingsoon-page .cs-title {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin: 6px 0 18px;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(-10px);
  animation: cs-title-in 800ms cubic-bezier(.2,.9,.2,1) forwards;
  animation-delay: 550ms;
}

/* neon layered text - main + subtle gradient fill */
.comingsoon-page .cs-title span {
  background: linear-gradient(90deg, var(--neon-a), var(--neon-b) 45%, var(--neon-c) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 6px 22px rgba(111,107,255,0.08));
  animation: neon-pulse 3s ease-in-out infinite alternate;
}

/* animated outer glow for title */
.comingsoon-page .cs-title::after {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  filter: blur(18px);
  background: radial-gradient(circle, rgba(111,107,255,0.08), transparent 35%);
  opacity: 0;
  animation: glow-appear 1.1s ease forwards;
  animation-delay: 600ms;
}

/* short description */
.comingsoon-page .cs-desc {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 24px;
  opacity: 0;
  animation: cs-text-in 600ms ease forwards;
  animation-delay: 700ms;
}

/* progress area */
.comingsoon-page .cs-progress-wrap {
  width: min(420px, 86%);
  margin: 0 auto;
  text-align: left;
  margin-top: 18px;
  opacity: 0;
  transform: translateY(8px);
  animation: cs-text-in 600ms ease forwards;
  animation-delay: 900ms;
}

/* progress bar track (glass) */
.comingsoon-page .cs-progress {
  width: 100%;
  height: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-radius: 999px;
  padding: 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02), 0 6px 20px rgba(3,6,23,0.4);
  border: 1px solid rgba(255,255,255,0.03);
  overflow: hidden;
}

/* progress fill with neon gradient */
.comingsoon-page .cs-progress .cs-fill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(87,242,210,0.9) 0%, rgba(111,107,255,0.95) 45%, rgba(255,77,210,0.95) 100%);
  box-shadow: 0 6px 26px rgba(111,107,255,0.12), 0 0 30px rgba(87,242,210,0.06);
  transform-origin: left center;
  animation: cs-fill-animate 4200ms cubic-bezier(.2,.8,.2,1) forwards;
}

/* percent text (right aligned) */
.comingsoon-page .cs-percent {
  font-weight: 700;
  color: #eafcff;
  float: right;
  font-size: 0.95rem;
  margin-top: 8px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(4px);
  animation: cs-text-in 600ms ease forwards;
  animation-delay: 1100ms;
}

/* helper center alignment for small screens */
@media (max-width: 640px) {
  .comingsoon-page .cs-progress-wrap { text-align: center; }
  .comingsoon-page .cs-percent { float: none; display: inline-block; margin-top: 10px; }
}

/* =======================
   KEYFRAMES
   ======================= */

@keyframes float-neon {
  0% { transform: translateY(0) scale(1.03); opacity: 0.95; }
  50% { transform: translateY(-18px) scale(1.06); opacity: 1; }
  100% { transform: translateY(0) scale(1.03); opacity: 0.95; }
}

@keyframes cs-card-entrance {
  0% { opacity: 0; transform: translateY(20px) scale(0.995); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cs-title-in {
  0% { opacity: 0; transform: translateY(-20px) scale(.98); filter: blur(4px); }
  60% { opacity: 1; transform: translateY(8px) scale(1.02) filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes neon-pulse {
  0% { filter: drop-shadow(0 6px 22px rgba(111,107,255,0.06)); transform: translateY(0) scale(1); }
  100% { filter: drop-shadow(0 18px 40px rgba(111,107,255,0.18)); transform: translateY(-4px) scale(1.01); }
}

@keyframes glow-appear {
  0% { opacity: 0; transform: scale(.98); filter: blur(22px); }
  100% { opacity: 1; transform: scale(1); filter: blur(18px); }
}

@keyframes cs-text-in {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* progress fill animation to final 62% */
@keyframes cs-fill-animate {
  0% { width: 0%; }
  80% { width: 62%; }
  100% { width: 62%; }
}

/* subtle bg fade on page open */
@keyframes cs-bg-fade {
  0% { opacity: 0; transform: scale(.997); filter: brightness(.6); }
  100% { opacity: 1; transform: scale(1); filter: brightness(1); }
}

/* reduce motion preference: make animations shorter / disabled */
@media (prefers-reduced-motion: reduce) {
  .comingsoon-page::before,
  .comingsoon-page .cs-card,
  .comingsoon-page .cs-fill,
  .comingsoon-page .cs-title,
  .comingsoon-page .cs-sub,
  .comingsoon-page .cs-desc,
  .comingsoon-page .cs-percent {
    animation: none !important;
    transition: none !important;
  }
}

/* Navbar base styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: #222;
  color: #fff;
}

/* Left, Center, Right sections */
.nav-left, .nav-center, .nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

/* Center alignment */
.nav-center {
  justify-content: center;
}

/* Search bar styling */
.search-bar {
  display: flex;
  align-items: center;
  background: #333;
  border-radius: 20px;
  padding: 5px 10px;
}

.search-bar input {
  background: none;
  border: none;
  outline: none;
  color: white;
  padding: 5px;
  width: 200px;
}

.search-bar button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Right section links */
.nav-right a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
}

.nav-right a:hover {
  color: #00bcd4;
}

.results-box {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
  font-size: 1.1em;
}





