* {  
  margin: 0; padding: 0; box-sizing: border-box;  
  font-family: 'Inter', sans-serif;  
}  
body {  
  background: linear-gradient(to bottom, #e0f2fe, #fff);  
  color: #1e293b;  
}  
header {  
  background: black;  
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);  
  position: sticky;  
  top: 0;  
  z-index: 1000;  
}  
.container {  
  max-width: 1200px;  
  margin: auto;  
  padding: 1rem 2rem;  
}

/* Navbar container */
.navbar {
background: black;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
}

/* Flex layout */
.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}

/* Logo styling */
.logo {
display: flex;
align-items: center;
font-size: 1.25rem;
font-weight: 700;
text-decoration: none;
color: #1f2937;
font-family: 'Inter', sans-serif;
}

.logo img {
height: 40px;
margin-right: 0.5rem;
}

/* Sign up button */
.btn-signup {
background-color: #2563eb;
color: white;
padding:30px;
border-radius: 9999px;
text-decoration: none;
font-weight: 600;
transition: background-color 0.3s ease;
}

.btn-signup:hover {
background-color: #1d4ed8;
}

/* Responsive */
@media (max-width: 640px) {
.btn-signup {
padding: 0.4rem 1rem;

font-size: 0.875rem;
}

.logo span {
font-size: 1rem;
}
}
.hero, .features, .testimonials, .cta-section, .trust, .faq {
padding: 4rem 2rem;
text-align: center;
}

.hero {  
  background: #dbeafe;  
}  
.hero h2 {  
  font-size: 2.5rem;  
  font-weight: 800;  
  margin-bottom: 1rem;  
  animation: slideFade 1s ease-out forwards;  
}  
@keyframes slideFade {  
  0% { opacity: 0; transform: translateY(-20px); }  
  100% { opacity: 1; transform: translateY(0); }  
}  
.hero p {  
  max-width: 600px;  
  margin: auto;  
  margin-bottom: 2rem;  
  font-size: 1.125rem;  
}  
.earning-counter {  
  font-size: 1.25rem;  
  margin-top: 1rem;  
}  
.cta {  
  background: linear-gradient(to right, #2563eb, #1e40af);  
  color: white;  
  padding: 1rem 2rem;  
  border-radius: 9999px;  
  font-size: 1rem;  
  font-weight: bold;  
  text-decoration: none;  
  transition: background 0.3s;  
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);  
}  
.cta:hover {  
  background: #1e3a8a;  
}  

.features {  
  display: grid;  
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));  
  gap: 2rem;  
  max-width: 1000px;  
  margin: auto;  
}  
.feature {  
  background: #fff;  
  border-radius: 1rem;  
  padding: 2rem;  
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);  
}  
.feature img {  
  width: 50px;  
}  

.testimonials .testimonial {  
  background: #fff;  
  padding: 1.5rem;  
  margin: 1rem auto;  
  border-radius: 1rem;  
  max-width: 500px;  
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);  
}  

.trust {  
  background: #f1f5f9;  
}  
.trust img {  
  max-width: 120px;  
  margin: 1rem;  
}  

.faq {  
  max-width: 800px;  
  margin: auto;  
  text-align: left;  
}  
.faq h4 {  
  margin-top: 1rem;  
  font-size: 1.1rem;  
  font-weight: 600;  
}  

.cta-section {  
  background: #2563eb;  
  color: white;  
}  

footer {  
  background: #f1f5f9;  
  text-align: center;  
  padding: 2rem;  
  font-size: 0.875rem;  
  color: #64748b;  
}  
footer .footer-links {  
  display: flex;  
  justify-content: center;  
  gap: 1.5rem;  
  margin: 1rem 0;  
  flex-wrap: wrap;  
}  

.mobile-cta {  
  display: none;  
  position: fixed;  
  bottom: 5px;  
  left: 50%;  
  transform: translateX(-50%);  
  background: #2563eb;  
  color: white;  
  padding: 0.75rem 2rem;  
  border-radius: 9999px;  
  font-weight: bold;  
  z-index: 1001;  
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);  
}  
@media (max-width: 768px) {  
  .mobile-cta {  
    display: block;  
  }  
}  

#liveAlert {  
  position: fixed;  
  bottom: 90px;  
  left: 10px;  
  background: #fff;  
  padding: 0.75rem 1rem;  
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);  
  border-radius: 10px;  
  display: none;  
  z-index: 1002;  
  font-size: 0.9rem;  
}

.stats {
  background: #f9fafb;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  margin: 2rem auto;
}

.stats h3 {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 2rem;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.stats-grid div {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-grid div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stats-grid strong {
  font-size: 2rem;
  color: #2563eb;
  display: block;
  margin-bottom: 0.5rem;
}

.stats-grid p {
  margin: 0;
  font-size: 1rem;
  color: #4b5563;
}
/* Basic fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse animation for CTA */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 100, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 255, 100, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 100, 0);
  }
}

.hero h2,
.hero p,
.cta,
.earning-counter,
.features .feature,
.stats-grid > div,
.testimonial,
.faq h4,
.faq p,
.cta-section {
  animation: fadeInUp 0.8s ease-in-out;
  animation-fill-mode: both;
  opacity: 0;
}

.hero h2 { animation-delay: 0.2s; }
.hero p { animation-delay: 0.4s; }
.cta { animation-delay: 0.6s; }
.earning-counter { animation-delay: 0.8s; }

.features .feature:nth-child(1) { animation-delay: 0.3s; }
.features .feature:nth-child(2) { animation-delay: 0.5s; }
.features .feature:nth-child(3) { animation-delay: 0.7s; }
.features .feature:nth-child(4) { animation-delay: 0.9s; }

.stats-grid > div {
  animation-delay: 1s;
}

.cta {
  animation: pulse 2s infinite;
}

/* Live alert box animation */
#liveAlert {
  position: fixed;
  bottom: 550px;
  right: 20px;
  background: #16a34a;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-weight: bold;
  display: none;
  animation: fadeInUp 0.5s ease-out;
  z-index: 1000;
}
.download-app {
  background: #f8fafc;
  padding: 3rem 1rem;
  text-align: center;
}

.download-app h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.download-app p {
  color: #475569;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.app-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #e2e8f0;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: #0f172a;
  transition: background 0.3s;
}

.app-link:hover {
  background: #cbd5e1;
}

.app-link img {
  width: 40px;
  height: 40px;
}

.app-link span {
  font-size: 0.9rem;
  line-height: 1.2;
}

.app-preview {
  max-width: 300px;
  width: 100%;
  margin-top: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
  
.mobile-cta {
  padding: 12px 24px;
  background-color: #007bff;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s;
}

.mobile-cta:hover {
  background-color: #0056b3;
}

.alert-box {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.alert-content {
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  animation: slideIn 0.3s ease-out;
}

.alert-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.alert-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.alert-content button {
  padding: 10px 20px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

@keyframes slideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
/* Initial state */
.slide-in {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in.show {
  opacity: 1;
  transform: translateX(0);
}