body {
  background-color: #121212;
  color: #BA55D3;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.features-section {
  padding: 30px 20px;
}

.features-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #00ff7f;
  text-shadow: 0 0 10px #00ff7f;
  margin-bottom: 20px;
}

.features-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.feature-card {
  min-width: 280px;
  background-color: #1e1e1e;
  border-left: 5px solid #00ff7f;
  border-radius: 12px;
  padding: 20px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  box-shadow: 0 0 10px rgba(0, 255, 127, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 255, 127, 0.4);
}

.feature-card h4 {
  font-size: 1.1rem;
  color: #00ff7f;
  text-shadow: 0 0 5px #00ff7f, 0 0 10px #00ff7f;
  margin-bottom: 10px;
}

.feature-card p {
  color: #e0ffe5;
  font-size: 0.9rem;
  line-height: 1.4;
}

