/* Modern styles for the landing page */
body {
  overflow-x: hidden;
  line-height: 1.6;
  color: #fff;
}

.animated-bg {
  animation: bg-pulse 8s ease-in-out infinite;
}

@keyframes bg-pulse {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Hero section styles */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  z-index: 1;
}

.hero-content {
  padding: 2rem;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-title {
  font-size: 5rem;
  margin: 0.5rem 0;
  background: linear-gradient(90deg, #bb00ff, #9900ff, #bb00ff);
  background-clip: text;
}

@keyframes gradient {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 600px;
  margin: 1rem auto 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.primary-button,
.secondary-button {
  padding: 12px 32px;
  font-size: 1.2rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  min-width: 180px;
}

.primary-button {
  background: linear-gradient(135deg, #bb00ff, #9900ff);
  color: white;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(187, 0, 255, 0.3);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.glow-button {
  box-shadow: 0 0 15px rgba(187, 0, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.glow-button:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.6s;
}

.glow-button:hover:after {
  left: 100%;
}

.mainLogo {
  width: 180px;
  margin-bottom: 1rem;
}

/* Features section styles */
.features-section {
  background-color: rgba(17, 17, 17, 0.95);
  padding: 6rem 20px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #fff;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #bb00ff;
  box-shadow: 0px 0px 5px var(--glow-color), 0px 0px 10px var(--glow-color),
    0px 0px 15px var(--glow-color);
  margin: 1rem auto 0;
  border-radius: 5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  background: rgba(187, 0, 255, 0.1);
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.feature-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Stats section styles */
.stats-section {
  background: #ffffff15;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 5rem 20px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
}

.cta-button {
  padding: 15px 50px;
  font-size: 1.2rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer styles */
.footer {
  background-color: rgba(17, 17, 17, 0.95);
  padding: 3rem 20px;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.footer a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #dd66ff;
  text-decoration: underline;
}

.copyright {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
