/* Reset */
*{box-sizing:border-box;margin:0;padding:0}
html,body,#app{height:100%}
body{font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color: #e9f0f7; background:#020617}


/* Fullscreen video background */
.video-bg{position:fixed; inset:0; z-index:0; overflow:hidden; display:flex; align-items:center; justify-content:center; pointer-events:none}
.video-bg video{min-width:100%; min-height:100%; width:auto; height:auto; object-fit:cover; transform:scale(1.02); filter:brightness(0.55) contrast(1.05) saturate(0.95)}


/* Subtle animated gradient overlay */
.gradient-overlay{position:fixed; inset:0; z-index:1; background: linear-gradient(120deg, rgba(6,30,63,0.25), rgba(0,86,102,0.18) 35%, rgba(10,10,10,0.22)); mix-blend-mode: overlay; animation: shift 12s ease-in-out infinite alternate; pointer-events:none}
@keyframes shift{0%{background-position:0% 50%}100%{background-position:100% 50%}}


/* Soft noise to add texture */
.noise{position:fixed; inset:0; z-index:2; pointer-events:none; opacity:0.04; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>'); mix-blend-mode:overlay}


/* Main content */
.container{position:relative; z-index:3; min-height:100%; display:flex; align-items:center; justify-content:center; padding:48px}
.card{max-width:980px; width:100%; background:rgba(8,12,20,0.36); border-radius:16px; padding:36px; backdrop-filter: blur(8px) saturate(1.05); box-shadow: 0 10px 30px rgba(2,6,23,0.6); border:1px solid rgba(255,255,255,0.04)}


h1{font-size:clamp(28px,4vw,44px); line-height:1.02; margin-bottom:8px}
.lead{font-size:clamp(14px,1.6vw,18px); color:rgba(233,240,247,0.9); margin-bottom:20px}
.tip{margin-top:16px; font-size:13px; color:rgba(233,240,247,0.6)}


.buttons{display:flex; gap:12px; flex-wrap:wrap}
.btn{padding:12px 18px; border-radius:10px; font-weight:600; cursor:pointer; border:0}
.btn-primary{background:linear-gradient(90deg,#00e5a8,#00b3ff); color:#022}
.btn-ghost{background:transparent; color:#d9eefc; border:1px solid rgba(255,255,255,0.06)}


/* Login form styles */
.login-card {
  z-index: 3;
  background: rgba(10, 20, 30, 0.55);
  padding: 40px 36px;
  border-radius: 20px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.05);
}

.login-card h2 {
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.input-group {
  margin-bottom: 18px;
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.input-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 15px;
  transition: border-color 0.2s ease;
}

.input-group input:focus {
  outline: none;
  border-color: #00e5a8;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.options a {
  color: #00b3ff;
  text-decoration: none;
}

.btn-login {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg,#00e5a8,#00b3ff);
  color: #022;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-login:hover {
  opacity: 0.85;
}

.register-text {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.register-text a {
  color: #00e5a8;
  text-decoration: none;
}
/* Login/Register form switch styling */
#authBox {
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

#authBox form {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

#authBox form.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
/* === Neon Glow Hover Effects === */

/* Base for all icons */
.dash-card .icon {
  transition: all 0.3s ease-in-out;
}

/* WhatsApp */
.dash-card.whatsapp .icon {
  color: #25D366;
  filter: drop-shadow(0 0 8px rgba(37,211,102,0.3));
}
.dash-card.whatsapp:hover .icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 15px rgba(37,211,102,0.7));
}

/* Facebook */
.dash-card.facebook .icon {
  color: #1877F2;
  filter: drop-shadow(0 0 8px rgba(24,119,242,0.3));
}
.dash-card.facebook:hover .icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 15px rgba(24,119,242,0.7));
}

/* Instagram */
.dash-card.instagram .icon {
  color: #E1306C;
  filter: drop-shadow(0 0 8px rgba(225,48,108,0.3));
}
.dash-card.instagram:hover .icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 15px rgba(225,48,108,0.6));
}

/* Mobile Testing */
.dash-card.mobile .icon {
  color: #00b3ff;
  filter: drop-shadow(0 0 8px rgba(0,179,255,0.3));
}
.dash-card.mobile:hover .icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 15px rgba(0,179,255,0.7));
}

/* Gallery */
.dash-card.gallery-card .icon {
  color: #00e5a8;
  filter: drop-shadow(0 0 8px rgba(0,229,168,0.3));
}
.dash-card.gallery-card:hover .icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 15px rgba(0,229,168,0.6));
}

/* Optional subtle pulse animation */
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(255,255,255,0.4)); }
}

.dash-card:hover .icon {
  animation: pulseGlow 1.8s ease-in-out infinite;
}
/* === Page Fade Transitions === */
.fade-out {
  opacity: 1;
  animation: fadeOut 0.6s ease forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.98); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}
.fade-out {
  opacity: 1;
  animation: fadeOut 0.6s ease forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}
.price-box {
  margin-top: 24px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 28px;
  border-radius: 14px;
  background: rgba(8,20,30,0.65);
  border: 1px solid rgba(0,229,168,0.25);
  box-shadow: 0 0 25px rgba(0,179,255,0.2);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  backdrop-filter: blur(6px);
}

.price-box .plan {
  font-size: 18px;
  font-weight: 600;
  color: #00e5a8;
  text-shadow: 0 0 12px rgba(0,179,255,0.3);
}

.price-box .amount {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90deg,#00e5a8,#00b3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover (desktop) + tap (mobile) effect */
.price-box:hover,
.price-box:active {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0,179,255,0.45);
  border-color: rgba(0,179,255,0.4);
}

/* 🌐 Responsive design */
@media (max-width: 768px) {
  .price-box {
    flex-direction: column;
    padding: 14px 22px;
    gap: 8px;
    width: 80%;
  }
  .price-box .plan {
    font-size: 16px;
  }
  .price-box .amount {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .price-box {
    width: 90%;
    padding: 12px 18px;
  }
  .price-box .plan {
    font-size: 15px;
  }
  .price-box .amount {
    font-size: 18px;
  }
}
/* === Title Fix === */
.title {
  font-size: clamp(28px, 6vw, 60px); /* Responsive scaling */
  line-height: 1.1;
  margin: 0 0 16px;
  background: linear-gradient(90deg, #00e5a8, #00b3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(0,179,255,0.4), 0 0 45px rgba(0,229,168,0.25);
  white-space: normal;       /* allow wrapping */
  word-break: keep-all;      /* no word splitting */
  text-align: center;
  overflow: visible;         /* ensure full text shows */
  display: block;
  animation: glowPulse 2.8s ease-in-out infinite;
}

/* Soft glowing pulse animation */
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 25px rgba(0,179,255,0.5), 0 0 45px rgba(0,229,168,0.3);
  }
  50% {
    text-shadow: 0 0 35px rgba(0,229,168,0.6), 0 0 70px rgba(0,179,255,0.6);
  }
}

.premium-box {
  position: relative;
  z-index: 3;
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(10, 20, 30, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(0,179,255,0.25);
  animation: fadeIn 1s ease-out forwards;
  max-width: 90vw;           /* wider for small screens */
  width: 600px;
  text-align: center;
  overflow: visible;          /* ensure full text displays */
  word-break: normal;         /* prevent breaking text */
  white-space: normal;        /* allow wrapping */
}

/* Fixed Title */
.premium-box h1 {
  font-size: clamp(26px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 12px;
  background: linear-gradient(90deg, #00e5a8, #00b3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0,179,255,0.3);
  white-space: normal;
  word-wrap: break-word;     /* allow wrapping to next line if needed */
  overflow: visible;
  display: block;
  width: 100%;
  text-align: center;
}
/* === White QR Payment Popup === */
-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}


.close-btn {
  position: absolute;
  right: 12px;
  top: 8px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #888;
}


.popup-box h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

/* 💰

#utrForm label {
  display: block;
  font-size: 14px;
  margin: 8px 0 4px;
  color: #333;
  text-align: left;
}

#utrForm input[type="text"],
#utrForm input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 10px;
}

.submit-btn {
  background: linear-gradient(90deg, #00b3ff, #00e5a8);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* 📱 Mobile Responsive */
@media (max-width:480px){
  .popup-box{width:92%;padding:22px 18px;}
  .qr-image{width:150px;height:150px;}
  .popup-price{font-size:20px;}
}
/* Price text above UTR in popup (white theme) */

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ---------- Background ---------- */
body {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

.video-bg video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.gradient-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  background: url('noise.png');
  opacity: 0.04;
  z-index: -1;
}

/* ---------- Center Layout ---------- */
.center-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* ---------- Premium Box ---------- */
.premium-box {
  background: rgba(10, 20, 30, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 50px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 40px rgba(0,179,255,0.25);
}

/* ---------- Title ---------- */
.title {
  font-weight: 800;
  font-size: clamp(26px, 6vw, 46px);
  background: linear-gradient(90deg, #00e5a8, #00b3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(0,179,255,0.4);
  white-space: nowrap; /* Keep single line */
  text-align: center;
  margin-bottom: 20px;
}

/* ---------- Note Text ---------- */
.note {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 500px;
  margin-inline: auto;
}

/* ---------- Feature List ---------- */
.feature-list {
  list-style: none;
  color: #e0e0e0;
  margin-bottom: 25px;
  text-align: left;
  display: inline-block;
}

.feature-list li {
  margin: 8px 0;
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ffa6;
  font-weight: bold;
}

/* ---------- Price Button ---------- */
.price-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border: 2px solid #00b3ff;
  border-radius: 12px;
  background: rgba(0,179,255,0.1);
  color: #00ffa6;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 10px;
}

.price-box:hover {
  background: rgba(0,179,255,0.2);
  transform: scale(1.05);
}

/* ---------- Popup Overlay ---------- */

/* ---------- Popup Box ---------- */


.popup-box h2 {
  margin-bottom: 15px;
  color: #111;
}


.popup-box label {
  display: block;
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
}

.popup-box input[type="text"],
.popup-box input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 6px;
}

.submit-btn {
  background: linear-gradient(90deg, #00b3ff, #00e5a8);
  color: #fff;
  border: none;
  padding: 12px 20px;
  margin-top: 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  width: 100%;
}

.submit-btn:hover {
  opacity: 0.9;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 768px) {
  .premium-box {
    padding: 30px 24px;
    width: 95%;
  }

  .title {
    font-size: clamp(22px, 7vw, 34px);
    margin-bottom: 16px;
  }

  .note {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .feature-list {
    font-size: 14px;
    text-align: left;
  }

  .price-box {
    flex-direction: column;
    gap: 6px;
    padding: 12px 24px;
    width: 80%;
  }

}

@media (max-width: 480px) {
  .premium-box {
    padding: 24px 18px;
  }

  .title {
    font-size: 24px;
  }

  .note {
    font-size: 13px;
  }

  .feature-list {
    font-size: 13px;
  }


  .submit-btn {
    font-size: 14px;
  }
}

/* ---------- Fade-in for Popup ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}



/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ---------- Background ---------- */
body {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

.video-bg video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.gradient-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  background: url('noise.png');
  opacity: 0.04;
  z-index: -1;
}

/* ---------- Center Layout ---------- */
.center-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* ---------- Premium Box ---------- */
.premium-box {
  background: rgba(10, 20, 30, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 50px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 40px rgba(0,179,255,0.25);
}

/* ---------- Title ---------- */
.title {
  font-weight: 800;
  font-size: clamp(26px, 6vw, 46px);
  background: linear-gradient(90deg, #00e5a8, #00b3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(0,179,255,0.4);
  white-space: nowrap;
  text-align: center;
  margin-bottom: 20px;
}

/* ---------- Note Text ---------- */
.note {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 500px;
  margin-inline: auto;
}

/* ---------- Feature List ---------- */
.feature-list {
  list-style: none;
  color: #e0e0e0;
  margin-bottom: 25px;
  text-align: left;
  display: inline-block;
}

.feature-list li {
  margin: 8px 0;
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ffa6;
  font-weight: bold;
}

/* ---------- Price Button ---------- */
.price-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border: 2px solid #00b3ff;
  border-radius: 12px;
  background: rgba(0,179,255,0.1);
  color: #00ffa6;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 10px;
  cursor: pointer;
}

.price-box:hover {
  background: rgba(0,179,255,0.2);
  transform: scale(1.05);
}

/* ---------- Popup Overlay ---------- */

/* ---------- Popup Box ---------- */


.popup-box h2 {
  margin-bottom: 15px;
  color: #111;
  font-weight: 700;
}



/* ---------- Input & Buttons ---------- */
.popup-box label {
  display: block;
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
  color: #333;
}

.popup-box input[type="text"],
.popup-box input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 6px;
}

.submit-btn {
  background: linear-gradient(90deg, #00b3ff, #00e5a8);
  color: #fff;
  border: none;
  padding: 12px 20px;
  margin-top: 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  width: 100%;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* ---------- Close Button ---------- */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 768px) {
  .premium-box {
    padding: 30px 24px;
    width: 95%;
  }

  .title {
    font-size: clamp(22px, 7vw, 34px);
    margin-bottom: 16px;
  }

  .note {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .feature-list {
    font-size: 14px;
    text-align: left;
  }

  .price-box {
    flex-direction: column;
    gap: 6px;
    padding: 12px 24px;
    width: 80%;
  }

  
}

@media (max-width: 480px) {
  .premium-box {
    padding: 24px 18px;
  }

  .title {
    font-size: 24px;
  }

  .note {
    font-size: 13px;
  }

  .feature-list {
    font-size: 13px;
  }


  .submit-btn {
    font-size: 14px;
  }
}

/* ---------- Fade-in Animation ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}


/* ---------- Popup Overlay ---------- */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* ---------- Popup Box ---------- */
.popup-box {
  background: #fff;
  color: #000;
  border-radius: 14px;
  padding: 22px 18px;
  width: 85%;
  max-width: 320px;   /* smaller width */
  text-align: center;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* ---------- QR Image ---------- */
.qr-image {
  width: 150px;       /* reduced from 220px */
  height: 150px;
  object-fit: contain;
  margin: 10px auto 12px;
  display: block;
  border-radius: 8px;
}

/* ---------- Popup Price ---------- */
.popup-price {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 6px 0 14px;
}

/* ---------- Mobile Friendly ---------- */
@media (max-width: 480px) {
  .popup-box {
    width: 92%;
    padding: 20px 16px;
  }
  .qr-image {
    width: 130px;
    height: 130px;
  }
  .popup-price {
    font-size: 18px;
  }
}
/* Animated activation message (typing + neon caret) */
.activated-msg-wrap {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.activated-msg {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--neon1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, var(--neon1), var(--neon2));
  text-shadow: 0 8px 30px rgba(0,229,168,0.12), 0 2px 8px rgba(0,179,255,0.08);
  white-space: nowrap;
  overflow: hidden;                 /* hide the "typing" overflow */
  border-right: 3px solid rgba(0,229,168,0.95); /* caret */
  box-sizing: border-box;
  padding-right: 6px;
  display: inline-block;
  vertical-align: middle;
  /* start closed, then animate width to reveal */
  width: 0;
  animation:
    hb-typing 3s steps(36, end) 0.25s forwards,
    hb-caret 0.8s steps(1, end) 3.25s infinite;
}

/* small subtitle under the main animated line */
.activated-sub {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(230,240,250,0.9);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* typing animation grows width */
@keyframes hb-typing {
  from { width: 0; }
  to   { width: 100%; } /* final width = full content width */
}

/* caret blink (after type completes we keep blinking) */
@keyframes hb-caret {
  0% { border-right-color: rgba(0,229,168,0.95); }
  50% { border-right-color: rgba(0,229,168,0.18); }
  100% { border-right-color: rgba(0,229,168,0.95); }
}

/* Remove caret after a while (optional): fade it out at end */
/* If you prefer to remove caret after typing, uncomment below */
/*
@keyframes hb-caret-out {
  0% { border-right-color: rgba(0,229,168,0.95); }
  100% { border-right-color: transparent; }
}
*/
  .qr-image {
  display: block;
  margin: 20px auto;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  background-color: #fff;
  padding: 10px;
}