body {
  margin: 0;
  padding: 0;
  font-family: 'Space Mono', monospace;
  background: linear-gradient(180deg, #0b001a, #130031);
  color: #e0e0e0;
  overflow-x: hidden;
}

h1, h2, h3, p, li, a {
  color: #e0e0e0;
  font-family: 'Space Mono', monospace;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
}

a {
  text-decoration: none;
  color: #00ffe1;
}

button {
  font-family: 'Orbitron', sans-serif;
}

.bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -3;
  opacity: 0.15;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.logo-top-left {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
}

.logo-top-left .logo {
  max-width: 140px;
  filter: drop-shadow(0 0 8px #ff00ff) drop-shadow(0 0 12px #ff00ff);
  animation: pulseGlow 2s infinite;
  transition: transform 0.3s ease;
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px #ff00ff) drop-shadow(0 0 12px #ff00ff);
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 16px #ff00ff) drop-shadow(0 0 24px #ff00ff);
    transform: scale(1.03);
  }
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.adjusted-hero {
  padding-top: 10vh;
}

.hero-subline {
  font-size: 1.5rem;
  color: #ffffffcc;
  max-width: 800px;
  text-align: center;
  line-height: 1.6;
  margin-top: 1.5rem;
}

.highlight {
  color: #ff00ff;
  font-weight: bold;
  text-shadow: 0 0 12px #ff00ff;
}

/* 🔥 Synthwave Title Style */
.synthwave-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: 0.15rem;
  text-align: center;
  color: white;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #ff00ff,
    0 0 20px #ff00ff,
    0 0 40px #00ffe1,
    0 0 60px #00ffe1;
  margin: 0;
}

.synthwave-title .ai-accent {
  color: #00ffe1;
}

/* Scroll pulse */
.scroll-prompt {
  font-size: 1.2rem;
  color: #00ffe1;
  text-shadow: 0 0 6px #00ffe1;
  margin-top: 2rem;
  animation: pulse 1.5s infinite;
  text-decoration: none;
}

@keyframes pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  margin: 2rem auto 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px #00ffe1, 0 0 30px #ff00ff;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.features-title {
  font-size: 3rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  color: #00ffe1;
  text-shadow: 0 0 12px #00ffe1, 0 0 24px #ff00ff, 0 0 32px #ff00ff;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: neonPulse 3s ease-in-out infinite;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 2.4rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.features-list li:nth-child(1) { animation-delay: 0.2s; }
.features-list li:nth-child(2) { animation-delay: 0.4s; }
.features-list li:nth-child(3) { animation-delay: 0.6s; }
.features-list li:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-list {
  padding-left: 2rem; /* Shift entire list right */
}

.features-list .icon {
  font-size: 1.8rem;
  text-shadow: 0 0 8px #00ffe1;
}

.features-list span {
  max-width: 100%;
}

.features-list li span {
  font-size: 1.4rem;  /* or smaller */
  line-height: 1.6rem;
}

/* Section Styles */
.section {
  max-width: 800px;
  margin: 3rem auto; /* was 5rem */
  text-align: center;
  padding: 0 1rem;
}

.section ul {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the list horizontally */
}

.features-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 1.75rem;       /* ⬅️ Increased from 1.5rem */
  line-height: 2.8rem;      /* ⬅️ Taller line height for readability */
  width: 100%;
  max-width: 800px;
  text-align: left;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.features-wrapper {
  display: flex;
  justify-content: flex-start; /* Change to 'center' or 'flex-end' if needed */
  padding-left: 2rem; /* Controls the horizontal shift */
}

.section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #00ffe1;
  text-shadow: 0 0 12px #00ffe1, 0 0 24px #ff00ff;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  text-align: center;
  background: linear-gradient(90deg, #ff00ff, #ff66cc);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 16px #ff00ff;
  transition: transform 0.2s ease-in-out;
  text-decoration: none; /* <-- Important to remove underline */
}

.cta-button:hover {
  transform: scale(1.05);
}

footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 3rem 1rem 2rem;
  color: #888;
}

footer a {
  color: #00ffe1;
  text-decoration: underline;
}

.overlay-fade {
  position: absolute;
  top: 0;
  width: 100%;
  height: 60vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0));
  z-index: -1;
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 5px #fff,
      0 0 10px #ff00ff,
      0 0 20px #ff00ff,
      0 0 40px #00ffe1,
      0 0 60px #00ffe1;
  }
  50% {
    text-shadow:
      0 0 10px #fff,
      0 0 20px #ff00ff,
      0 0 30px #ff00ff,
      0 0 60px #00ffe1,
      0 0 80px #00ffe1;
  }
}

.synthwave-title {
  animation: neonPulse 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .synthwave-title {
    font-size: 3rem;
  }

  .hero-subline {
    font-size: 1.2rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .section li {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .logo-top-left .logo {
    max-width: 100px;
  }

  .section ul {
    max-width: 900px;
  }

  .video-container {
    aspect-ratio: 16 / 9;
    width: 95%;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}
