:root {
    --primary-bg: radial-gradient(circle at center, #181d41, #0b0d21 50%);
    --text-primary: #ffffff;
    --text-secondary: #9b9c9d;
    --accent-primary: #5865F2;
    --accent-secondary: #3442d9;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --box-tint: rgba(88, 101, 242, 0.1);
    --glow-primary: rgba(88, 101, 242, 0.2);
    --glow-hover: rgba(88, 101, 242, 0.6);
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--primary-bg);
    color: var(--text-primary);
    min-height: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: var(--primary-bg);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    position: relative;
}

.launch-badge {
    margin-top: 30px; /* This pushes it below the fixed navbar */
    display: inline-flex;
    align-items: center;
    background: var(--box-tint);
    color: var(--accent-primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.launch-badge i {
    font-size: 16px;
    margin-right: 8px;
}

h1 {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #5865F2 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 1.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
    text-transform: uppercase;
    letter-spacing: -1px;
}

p {
    text-align: center;
    margin-bottom: 25px;
    max-width: 700px;
    color: var(--text-secondary);
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 100px;
    border-radius: 12px;
    background-color: var(--card-bg);
    font-size: 20px;
    font-weight: bold;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
}

.box:hover {
    border-color: var(--accent-primary);
    background-color: var(--accent-primary);
    transform: translateY(-5px);

}

.box i {
    font-size: 24px;
    color: var(--accent-primary);
}

.terms {
    margin-top: 15px;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
}

.file-input {
    display: none;
}

.analytic-box {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-top: 20px;
    background: var(--card-bg);
    padding: 20px 50px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    width: 80%;
    max-width: 1000px;
    transition: all 0.3s ease-in-out;
}

.analytic-box:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.analytic-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    background: linear-gradient(135deg, #ffffff, #5865F2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .analytic-box {
        flex-direction: column;
        align-items: center;
        width: 90%;
        padding: 20px;
    }
    .stat-number {
        font-size: 32px;
    }
}

/* New styles for the features section */
.features-section {
    text-align: center;
    padding: 100px 40px;

}

.features-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-card {
    background:rgba(28, 32, 37, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    width: 300px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 12px var(--glow-primary);

}

.feature-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    margin-top: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 8px;
}

.feature-icon {
    font-size: 30px;
    margin: 0 auto 10px auto;
    display: block;
    color: #5865F2; /* Discord blue */
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 14px;
    color: var(--text-secondary);
    text-align: left;
}

.tier-features li {
    margin: 6px 0;
}

.buy-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.popular2 {
    border: 2px solid #ffd700;
    position: relative;
}

.popular-badge2 {
    background: #ffd700;
    color: white;
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 8px;
    margin-left: 6px;
    vertical-align: middle;
}

.popular {
    border: 2px solid var(--accent-primary);
    position: relative;
}

.popular-badge {
    background: var(--accent-primary);
    color: white;
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 8px;
    margin-left: 6px;
    vertical-align: middle;
}


html {
    scroll-behavior: smooth;
  }
  
  #uploadBox {
    display: inline-block;
    text-decoration: none;
    background-color: var(--accent-secondary);
    color: white;
    padding: 12px 44px;
    border-radius: 12px;
    font-weight: bold;
    border-color: var(--accent-primary);
    

}



#uploadBox:hover {
    background-color: var(--accent-primary);
}

.review-box {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  max-width: 100%;
  margin: 0;
  text-align: left; /* optional depending on text content */
}

.review-img {
  width: 60%; /* or 50%, or 30% depending on your design */
  border: 1px solid var(--accent-secondarysecondary);
  height: auto;
  border-radius: 16px;
  margin: 0 auto;
  display: block;
}


  
  .stars-img {
    width: 100px;
  }

  /* FAQ Section */
.faq-section {
    text-align: center;
    padding: 60px 20px; /* Reduced padding for a more compact section */
}

.faq-header {
    font-size: 26px; /* Smaller header font */
    margin-bottom: 30px; /* Reduced margin for a more compact layout */
    color: var(--text-primary);
    font-weight: 700; /* Slightly bolder font for better readability */
}

.faq-container {
    max-width: 600px; /* Smaller container width */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Smaller gap between items */
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px; /* Reduced border radius for a tighter look */
    padding: 15px; /* Reduced padding for a more compact look */
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.faq-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 6px rgba(0, 128, 255, 0.2);
}

.faq-question {
    color: #e2e2e2;
    font-size: 16px; /* Smaller font size for questions */
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 0;
    transition: all 0.4s ease;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px; /* large enough for longest content */
    opacity: 1;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  

.faq-icon {
    font-size: 20px; /* Smaller icon size */
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}


  .stat-icon {
    width: 40px; /* Adjust size */
    height: 40px;
    margin-right: 10px;
    transition: transform 0.3s;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent; /* Transparent background */
    padding: 20px 40px;
    z-index: 1000;
    display: flex;
    justify-content: flex-end; /* Align to the right side */
    align-items: center; /* Center vertically */
    transition: top 0.3s; /* Smooth transition when hiding */
}


/* Navbar links container */
.nav-links {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    list-style: none;
}

/* Navbar link styles */
.nav-link {
    text-decoration: none;
    color: #888; /* Light grey color */
    font-size: 14px; /* Improved font size */
    font-family: 'Arial', sans-serif; /* Better font */
    font-weight: 600;
    position: relative;
    padding: 5px 10px;
}

.nav-link:hover {
    color: var(--accent-primary); /* Accent color on hover */
    transform: translateY(-2px);
    text-decoration: none; /* <-- Add this line */

}

/* Highlighted login button style */
.nav-button {
    background-color: var(--accent-primary);
    color: #fff !important;
    border-radius: 20px;
    padding: 8px 16px;
    transition: background 0.3s, transform 0.2s;
    border: 1px solid var(--accent-secondary);
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.2);
}

.nav-button:hover {
    background-color: var(--accent-secondary);
    box-shadow: 0 0 12px rgba(36, 54, 248, 0.4);
    transform: translateY(-2px);
}


/* Active link indicator */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Make navbar links more spaced out */
.nav-links li {
    margin-right: 10px; /* Adds more space between links */
}

/* Hide navbar when scrolling down */
.navbar-hidden {
    top: -100px; /* Hides the navbar when scrolled */
}

/* Add smooth scroll to the page */
html {
    scroll-behavior: smooth;
}

/* Footer Section */
.footer-note {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #555;
    text-align: left;  /* Align everything to the left */
    padding: 10px; /* Adjust padding for better spacing */
}

.footer-note p {
    margin: 5px 0; /* Reduce space between paragraphs */
}

.footer-note a {
    color: #2f6cae; /* Add color to the email link */
    text-decoration: none;
}


.get-started-btn {
    padding: 14px 35px;
    background-color: var(--accent-primary); /* Accent blue color */
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-bottom: 20px;
}

.get-started-btn:hover {
    background-color: var(--accent-hover); /* Accent hover color */
    transform: scale(1.05);
}

.footer-note {
    width: 100%;
    text-align: left;
    font-size: 10px;
    color: var(--text-primary);
    backdrop-filter: blur(8px);
  }
  
  .cashback-tag {
    padding: 0 12px;
    background: rgba(0, 132, 255, 0.15); /* Light transparent blue */
    border: 2px solid #0084ff; /* Sharp blue border */
    border-radius: 10px;
    font-style: italic;
    font-weight: 600;
    color: var(--text-primary); /* Keeps theme consistent */
    display: inline-block;
    margin-left: 10px;
  }
  

  .ai-tools {
    padding: 32px;
    color: var(--text-primary);
  }
  
  .tool-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: box-shadow 0.3s ease;
  }
  
  .tool-card:hover {
    box-shadow: 0 0 24px var(--glow-hover);
  }
  
  .tool-card .icon {
    background-color: var(--box-tint);
    border-radius: 12px;
    padding: 16px;
    font-size: 24px;
  }
  
  .tos-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    width: 90%;
    max-width: 700px;
    height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 20px var(--glow-primary);
  }

  
  .Terms {
    color: var(--text-secondary);
  }

  .Terms a {
    color: var(--accent-primary);
    cursor: pointer;
    text-decoration: underline;
  }

  /* Modal Styling */
  .modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .modal-content {
    background: #0a0a1b;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    padding: 24px;
    overflow-y: auto;
    box-shadow: 0 0 20px var(--glow-primary);
    position: relative;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
  }

  .modal h1, .modal h2 {
    color: var(--accent-primary);
  }

  .modal p {
    color: var(--text-secondary);
    line-height: 1.6;
  }

  /* Hamburger Button */
.hamburger {
    display: none;
    font-size: 28px;
    background: none ;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }
  
  /* Responsive Nav */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
      position: absolute;
      top: 20px;
      right: 30px;
    }
  
    .nav-links {
      position: absolute;
      top: 70px;
      right: 0;
      background-color: #0a0a1b;
      width: 100%;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      padding: 20px 0;
      display: none;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-button {
      padding: 10px 20px;
      font-size: 16px;
    }
  }
  
  .how-it-works {
  padding: 4rem 2rem;
  background: var(--primary-bg);
  color: var(--text-primary);
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.step {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 0 12px var(--glow-primary);
  transition: box-shadow 0.3s ease;
}

.step:hover {
  box-shadow: 0 0 20px var(--glow-hover);
}

.step-number {
  font-size: 2rem;
  background: var(--accent-primary);
  color: white;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  font-weight: 700;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.how-it-works {
    padding: 4rem 2rem;
    background: transparent;
    text-align: center;
    color: var(--text-primary);
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--text-primary);
  }
  
  .steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  
  .step {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    width: 260px;
    box-shadow: 0 0 12px var(--glow-primary);
    transition: box-shadow 0.3s ease;
  }
  
  .step:hover {
    box-shadow: 0 0 20px var(--glow-hover);
  }
  
  .step-number {
    font-size: 2rem;
    background: var(--accent-primary);
    color: white;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    font-weight: 700;
  }
  
  .step-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
  }
  
  .step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
  }
  
  .arrow {
    font-size: 2rem;
    color: var(--accent-primary);
    margin: 0 0.5rem;
  }
  


/* Hide sections initially */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.5s ease-out; /* ← slowed down */
}

/* Show when in view */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



