:root {
      --primary: #00c4ff;
      --accent: #00ffb3;
      --tertiary: #ff005e;
      --secondary: #2c5364;
      --dark: #0f2027;
      --light: #ffffff;
      --glass: rgba(255, 255, 255, 0.1);
    }
    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
      color: white;
      overflow-x: hidden;
      position: relative;
      scroll-behavior: smooth;
    }


/* ✅ Pro Navbar Styles with Mobile Hamburger */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 50px;
  z-index: 999;
  backdrop-filter: blur(10px);
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px; /* space between icon and text */
  text-decoration: none;
}

.nav-logo img {
  height: 40px; /* adjust to match text nicely */
  width: auto;
}

.nav-logo span {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
}

.nav-logo span:hover {
  color: var(--tertiary);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  border-radius: 4px;
  min-width: 150px;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 10px;
}

.signup-btn {
  background: var(--accent);
  color: var(--dark);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
}

.signup-btn:hover {
  background: var(--tertiary);
  color: var(--light);
}

/* ✅ Hamburger toggle button */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--light);
  cursor: pointer;
  z-index: 1001;
}

/* ✅ Mobile responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 70px; /* Adjust if your navbar height is different */
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    width: 220px;
    display: none;
    padding: 20px;
    border-radius: 0 0 0 8px;
  }
  .nav-links li {
    margin-bottom: 15px;
  }
  .nav-links.active {
    display: flex;
  }
  .dropdown-menu {
    position: static;
    background: none;
    border-radius: 0;
  }
}
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(0, 196, 255, 0.1), rgba(0, 255, 179, 0.1));
      animation: wave 15s infinite linear;
      z-index: -2;
      opacity: 0.3;
    }
    @keyframes wave {
      0% { transform: translateX(0); }
      50% { transform: translateX(-100px); }
      100% { transform: translateX(0); }
    }
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.5s ease;
    }
    #preloader img {
      width: 100px;
      animation: spin 1.5s infinite linear, glow 2s infinite;
    }
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    @keyframes glow {
      0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 196, 255, 0.5)); }
      50% { filter: drop-shadow(0 0 20px rgba(0, 196, 255, 0.8)); }
    }
    header {
      text-align: center;
      padding: 60px 20px;
      position: relative;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 1;
      overflow: hidden;
	  margin-bottom: 10px;  /* ✅ Add this line */
    }
    #particles-js {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: 0.6;
    }
    .logo {
      height: 80px;
      margin-bottom: 20px;
      filter: drop-shadow(0 0 15px rgba(0, 196, 255, 0.7));
      animation: scaleIn 1s ease-out;
      transition: transform 0.3s ease;
    }
    .logo:hover {
      transform: scale(1.1);
    }
    @keyframes scaleIn {
      0% { transform: scale(0); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }
    header h1 {
      font-size: 2.8em;
      font-weight: 700;
      margin-bottom: 0.2em;
      background: linear-gradient(to right, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 20px rgba(0, 196, 255, 0.6);
    }
    .tagline {
      font-size: 1.2em;
      color: #ddd;
      max-width: 800px;
      margin: 0 auto 20px;
      line-height: 1.5;
    }
    .cta-button {
      display: inline-block;
      padding: 12px 25px;
      background: linear-gradient(45deg, var(--primary), var(--accent));
      color: var(--dark);
      text-decoration: none;
      border-radius: 40px;
      font-weight: 700;
      font-size: 0.9em;
      transition: all 0.3s ease;
      border: 2px solid var(--tertiary);
      box-shadow: 0 5px 15px rgba(0, 196, 255, 0.4);
      line-height: 1.3;
      position: relative;
      overflow: hidden;
    }
    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, var(--accent), var(--tertiary));
      transition: left 0.4s ease;
      z-index: -1;
    }
    .cta-button:hover::before {
      left: 0;
    }
    .cta-button:hover, .cta-button:focus {
      color: var(--light);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 0, 94, 0.5);
    }
    .floating-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: var(--accent);
      color: var(--dark);
      padding: 15px;
      border-radius: 50%;
      box-shadow: 0 5px 15px rgba(0, 255, 179, 0.5);
      z-index: 1000;
      transition: all 0.3s ease;
      animation: bounce 2s infinite;
    }
    .floating-cta:hover {
      background: var(--tertiary);
      transform: scale(1.1);
      animation: none;
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .quick-links {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
      margin: 0 auto 10px auto; /* ✅ Top 0, Bottom 10px */
      max-width: 1000px;
      position: sticky;
      top: 0;
      background: rgba(0, 0, 0, 0.8);
      padding: 10px 0;
      z-index: 100;
      transition: opacity 0.3s ease;
    }
    .quick-links.scrolled {
      opacity: 0.9;
    }
    .quick-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 15px;
      background: var(--glass);
      border-radius: 20px;
      text-decoration: none;
      color: #ddd;
      font-size: 0.85em;
      position: relative;
      transition: all 0.3s ease;
    }
    .quick-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--tertiary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
    .quick-link:hover::after {
      width: 80%;
    }
    .quick-link i {
      color: var(--accent);
    }
    .quick-link:hover {
      background: var(--primary);
      color: var(--dark);
      transform: translateY(-2px);
    }
    .container {
      padding: 20px 20px;
      max-width: 1200px;
      margin: auto;
    }
    .section-title {
      font-size: 2.2em;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
      color: var(--primary);
      text-shadow: 0 2px 5px rgba(0, 196, 255, 0.3);
      position: relative;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--accent);
    }
    .platform-filters {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 20px;
    }
    .filter-btn {
      padding: 8px 20px;
      background: var(--glass);
      border: 2px solid var(--primary);
      border-radius: 20px;
      color: #ddd;
      font-size: 0.85em;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .filter-btn.active, .filter-btn:hover {
      background: var(--tertiary);
      color: var(--light);
      border-color: var(--accent);
    }
    .platforms {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, auto);
      gap: 20px;
      margin-top: 20px;
    }
    .platform-card {
      background: #1e2a38;
      border-radius: 12px;
      padding: 10px;
      text-align: center;
      transition: all 0.4s ease;
      box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.2), inset -5px -5px 10px rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(0, 196, 255, 0.2);
      position: relative;
      overflow: hidden;
    }
    .platform-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
    }
    .platform-card:hover::before {
      opacity: 0.2;
    }
    .platform-card:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 10px 20px rgba(0, 255, 179, 0.4);
      border-color: var(--tertiary);
    }
    .platform-icon {
      font-size: 3em;
      color: var(--accent);
      margin: 20px 0;
      transition: transform 0.3s ease;
    }
    .platform-card:hover .platform-icon {
      transform: scale(1.2);
    }
    .platform-info h3 {
      font-size: 1.3em;
      margin-bottom: 8px;
      color: var(--primary);
      font-weight: 700;
    }
    .platform-info p {
      font-size: 0.85em;
      color: #bbb;
      margin-bottom: 12px;
      line-height: 1.5;
    }
    .platform-info a {
      display: block;
      padding: 8px 15px;
      background: var(--primary);
      color: var(--dark);
      text-decoration: none;
      border-radius: 25px;
      font-weight: 700;
      font-size: 0.85em;
      transition: all 0.3s ease;
      border: 2px solid var(--accent);
    }
    .platform-info a:hover, .platform-info a:focus {
      background: var(--tertiary);
      color: var(--light);
      transform: translateY(-2px);
    }
    .testimonials {
      max-width: 800px;
      margin: 40px auto;
      position: relative;
    }
    .testimonial-slider {
      display: flex;
      animation: slide 20s infinite;
    }
    .testimonial {
      flex: 0 0 100%;
      text-align: center;
      padding: 20px;
      color: #ddd;
      font-size: 1em;
      line-height: 1.5;
      opacity: 0.5;
      transition: opacity 0.3s ease;
    }
    .testimonial:hover {
      opacity: 1;
    }
    .testimonial .avatar {
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: var(--dark);
      font-size: 1.2em;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      border: 2px solid var(--accent);
    }
    @keyframes slide {
      0%, 20% { transform: translateX(0); }
      25%, 45% { transform: translateX(-100%); }
      50%, 70% { transform: translateX(-200%); }
      75%, 95% { transform: translateX(-300%); }
      100% { transform: translateX(0); }
    }
    .testimonial-thumbnails {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 15px;
    }
    .thumbnail {
      width: 30px;
      height: 30px;
      background: var(--primary);
      color: var(--dark);
      font-size: 0.9em;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0.6;
      transition: all 0.3s ease;
    }
    .thumbnail.active {
      opacity: 1;
      border: 2px solid var(--tertiary);
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 40px auto;
    }
    .blog-card {
      background: #1e2a38;
      border-radius: 12px;
      padding: 15px;
      transition: all 0.4s ease;
      box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.2), inset -5px -5px 10px rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(0, 196, 255, 0.2);
      position: relative;
      overflow: hidden;
    }
    .blog-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
    }
    .blog-card:hover::before {
      opacity: 0.2;
    }
    .blog-card:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 255, 179, 0.5);
      border-color: var(--tertiary);
    }
    .blog-icon {
      font-size: 3em;
      color: var(--accent);
      margin: 20px 0;
      transition: transform 0.3s ease;
    }
    .blog-card:hover .blog-icon {
      transform: scale(1.2);
    }
    .blog-content h3 {
      font-size: 1.2em;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .blog-content p {
      color: #bbb;
      font-size: 0.85em;
      line-height: 1.5;
      margin-bottom: 12px;
    }
    .blog-content a {
      display: block;
      padding: 8px 15px;
      background: var(--primary);
      color: var(--dark);
      text-decoration: none;
      border-radius: 25px;
      font-weight: 700;
      font-size: 0.85em;
      transition: all 0.3s ease;
      border: 2px solid var(--accent);
    }
    .blog-content a:hover, .blog-content a:focus {
      background: var(--tertiary);
      color: var(--light);
      transform: translateY(-2px);
    }
    .blog-tag {
      position: absolute;
      top: 15px;
      left: 15px;
      padding: 5px 10px;
      background: var(--tertiary);
      color: var(--light);
      font-size: 0.8em;
      border-radius: 15px;
      font-weight: 700;
    }
    .blog-link {
      text-align: center;
      margin: 20px 0;
    }
    .blog-link a {
      padding: 10px 20px;
      background: var(--accent);
      color: var(--dark);
      text-decoration: none;
      border-radius: 25px;
      font-weight: 700;
      font-size: 0.9em;
      transition: all 0.3s ease;
      border: 2px solid var(--tertiary);
    }
    .blog-link a:hover {
      background: var(--tertiary);
      color: var(--light);
      transform: translateY(-2px);
    }
    footer {
  text-align: center;
  padding: 40px 20px 10px; /* tighter bottom */
  font-size: 0.9em;
  color: #bbb;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 30px;
  max-width: 800px;
  margin: 20px auto;
}
.footer-nav a {
  color: #ddd;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9em;
  transition: color 0.3s ease;
  white-space: nowrap;
  text-align: center;
  padding: 8px 15px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--tertiary);
}
    .social-icons {
      margin: 20px 0;
    }
    .social-icons a {
      color: #bbb;
      margin: 0 15px;
      font-size: 1.5em;
      transition: all 0.3s ease;
    }
    .social-icons a:hover, .social-icons a:focus {
      color: var(--tertiary);
      transform: scale(1.2);
    }
    .newsletter {
      margin: 20px 0;
      display: flex;
      justify-content: center;
      max-width: 350px;
      margin-left: auto;
      margin-right: auto;
    }
    .newsletter input {
      padding: 10px;
      border: none;
      border-radius: 20px 0 0 20px;
      width: 200px;
      font-size: 0.85em;
      background: rgba(255, 255, 255, 0.1);
      color: white;
    }
    .newsletter input:focus {
      outline: none;
      box-shadow: 0 0 10px rgba(0, 196, 255, 0.4);
    }
    .newsletter button {
      padding: 10px 20px;
      border: none;
      background: var(--primary);
      color: var(--dark);
      border-radius: 0 20px 20px 0;
      font-weight: 700;
      font-size: 0.85em;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .newsletter button:hover, .newsletter button:focus {
      background: var(--tertiary);
      color: var(--light);
    }
    .back-to-top {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background: var(--accent);
      color: var(--dark);
      text-decoration: none;
      border-radius: 20px;
      font-size: 0.85em;
      transition: all 0.3s ease;
    }
    .back-to-top:hover, .back-to-top:focus {
      background: var(--tertiary);
      color: var(--light);
      transform: translateY(-2px);
    }
    .cookie-consent {
      position: fixed;
      bottom: 15px;
      left: 15px;
      right: 15px;
      background: var(--glass);
      padding: 15px;
      border-radius: 10px;
      backdrop-filter: blur(10px);
      color: #ddd;
      font-size: 0.8em;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: opacity 0.5s ease;
    }
    .cookie-consent.hidden {
      opacity: 0;
      pointer-events: none;
    }
    .cookie-consent p {
      margin: 0;
      flex: 1;
    }
    .cookie-consent button {
      padding: 8px 15px;
      background: var(--primary);
      color: var(--dark);
      border: none;
      border-radius: 20px;
      font-weight: 700;
      font-size: 0.8em;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .cookie-consent button:hover, .cookie-consent button:focus {
      background: var(--tertiary);
      color: var(--light);
    }
    .ad-leaderboard {
      text-align: center;
      margin: 30px 0;
      min-height: 90px;
    }
    @media (max-width: 992px) {
      .platforms { grid-template-columns: repeat(2, 1fr); }
      header h1 { font-size: 2.2em; }
      .tagline { font-size: 1em; }
    }
    @media (max-width: 768px) {
      .platforms { grid-template-columns: 1fr; }
      .footer-nav { grid-template-columns: 1fr; gap: 15px; }
      .quick-links { flex-direction: column; align-items: center; }
      .newsletter { flex-direction: column; gap: 10px; }
      .newsletter input { border-radius: 20px; width: 100%; }
      .newsletter button { border-radius: 20px; }
      .floating-cta { display: none; }
    }
    @media (max-width: 576px) {
      header h1 { font-size: 1.8em; }
      .section-title { font-size: 1.8em; }
      .cookie-consent { flex-direction: column; gap: 10px; text-align: center; }
    }

/* ✅ Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 14px;
  font-size: 24px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ✅ Prevent horizontal scroll */
body, html {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ✅ Make sure no element exceeds screen width */
* {
  box-sizing: border-box;
}

.ads-wrapper {
  margin: 30px auto 0;
  max-width: 100%;
  text-align: center;
  overflow: hidden;
  height: auto;
  padding: 0;
  position: relative;
}

.ads-wrapper ins.adsbygoogle {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  max-width: 100% !important;
}

@media (max-width: 768px) {
  .ads-wrapper ins.adsbygoogle {
    width: 100% !important;
    height: auto !important;
  }
}

/* =======================
   Typewriter Animation
========================== */

.typewriter {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #007bff;
  width: 0ch;
  margin: 0 auto;
  font-size: 2.6rem;
  animation:
    typing1 6s steps(40, end) forwards,
    blink1 0.75s step-end 6;
  animation-fill-mode: forwards;
  max-width: 100%;
}

.typewriter-delay {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #32ff7e;
  width: 0ch;
  margin: 0 auto;
  font-size: 1.8rem;
  animation:
    typing2 5s steps(52, end) 4.2s forwards,
    blink2 0.75s step-end 5 4.2s;
  animation-fill-mode: forwards;
  max-width: 100%;
}

/* Typing Keyframes for Desktop */
@keyframes typing1 {
  from { width: 0ch; }
  to { width: 40ch; }
}

@keyframes typing2 {
  from { width: 0ch; }
  to { width: 52ch; }
}

/* Cursor Blink Keyframes */
@keyframes blink1 {
  0%, 100% { border-color: transparent; }
  50% { border-color: #007bff; }
}

@keyframes blink2 {
  0%, 100% { border-color: transparent; }
  50% { border-color: #32ff7e; }
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
  .typewriter {
    font-size: 1.3rem;
    animation: typing1-mobile 6s steps(28, end) forwards, blink1 0.75s step-end 6;
  }

  .typewriter-delay {
    font-size: 1rem;
    animation: typing2-mobile 5s steps(32, end) 4.2s forwards, blink2 0.75s step-end 5 4.2s;
  }

  @keyframes typing1-mobile {
    from { width: 0ch; }
    to { width: 30ch; }
  }

  @keyframes typing2-mobile {
    from { width: 0ch; }
    to { width: 32ch; }
  }
}


/* =======================
   Avatar:
========================== */

.avatar-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s, border 0.2s;
}
.avatar-thumb:hover {
  transform: scale(1.05);
  border-color: #00ffb3;
}
.avatar-thumb.selected {
  border-color: #00ffb3;
  box-shadow: 0 0 10px #00ffb3;
}

/* 🧠 Tooltip wrapper */
.tooltip-wrapper {
  position: relative;
  display: inline-block;
  margin-left: 6px;
  color: #32ff7e;
  cursor: pointer;
}

.tooltip-wrapper .tooltip-text {
  visibility: hidden;
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 99;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  white-space: nowrap;
  font-size: 0.85rem;
  transition: opacity 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.tooltip-wrapper .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #1a1a1a transparent transparent transparent;
}

.tooltip-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Hero Tools Wrapper */
.hero-tools-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
  margin-top: -30px; /* visually pull it up if needed */
}

/* Hero Tools Box - matches header styling */
.hero-tools-box {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 255, 150, 0.1);
  width: 100%;
  max-width: 1000px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-tools-box {
    padding: 20px;
  }
}

#fullGenerateBtn:hover {
  background-color: #28a745;
  transform: scale(1.03);
}

  /* Dynamic generate button states */
  #fullGenerateBtn.btn-online {
    background: #28a745 !important; /* green */
    border-color: #28a745 !important;
    box-shadow: 0 0 18px rgba(40,167,69,0.4);
  }
  #fullGenerateBtn.btn-offline {
    background: #ff9800 !important; /* orange */
    border-color: #ff9800 !important;
    box-shadow: 0 0 18px rgba(255,152,0,0.4);
  }
  #fullGenerateBtn.btn-online:hover { transform: scale(1.03); }
  #fullGenerateBtn.btn-offline:hover { transform: scale(1.03); }

/* Subtle, universal polish for the main CTA */
#fullGenerateBtn {
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
#fullGenerateBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0,0,0,.35);
  filter: brightness(1.05);
}

  /* Avatar service status pill */
  .status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 6px 0 0;
    user-select: none;
  }
  .status-pill.status-online { background: rgba(40,167,69,0.15); color: #9bffb9; border: 1px solid rgba(40,167,69,0.4); }
  .status-pill.status-offline { background: rgba(255,152,0,0.15); color: #ffd6a1; border: 1px solid rgba(255,152,0,0.4); }


/* ===== Enhanced CTA Button States ===== */
.btn-online {
  background: linear-gradient(135deg, #00ffb3, #00c4ff);
  color: #0b1220 !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(0, 255, 179, 0.35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-online:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 38px rgba(0, 255, 179, 0.45);
  filter: brightness(1.05);
}

.btn-offline {
  background: linear-gradient(135deg, #3a3a3a, #2a2a2a) !important;
  color: #cccccc !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}
.btn-offline:hover {
  transform: none;
  filter: none;
  cursor: pointer;
}

/* ===== Enhanced Status Pill ===== */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px !important;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: .2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.status-online {
  background: rgba(0, 255, 179, 0.12);
  color: #a9ffe8;
  border-color: rgba(0, 255, 179, 0.3);
}
.status-offline {
  background: rgba(255, 107, 107, 0.12);
  color: #ffb3b3;
  border-color: rgba(255, 107, 107, 0.3);
}

/* Enhanced CTA button states */
.btn-online{
  background: linear-gradient(135deg,#00ffb3,#00c4ff);
  color:#0b1220!important;border:none!important;
  box-shadow:0 10px 30px rgba(0,255,179,.35);
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease;
}
.btn-online:hover{transform:translateY(-2px) scale(1.01);box-shadow:0 14px 38px rgba(0,255,179,.45);filter:brightness(1.05);}
.btn-offline{
  background:linear-gradient(135deg,#3a3a3a,#2a2a2a)!important;color:#ccc!important;
  border:1px solid rgba(255,255,255,.12)!important;box-shadow:none!important;
}
.status-pill{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;font-size:.9rem;line-height:1;letter-spacing:.2px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);}
.status-online{background:rgba(0,255,179,.12);color:#a9ffe8;border-color:rgba(0,255,179,.3);}
.status-offline{background:rgba(255,107,107,.12);color:#ffb3b3;border-color:rgba(255,107,107,.3);}
