@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600;800&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0f0f0f;
  color: #f1f1f1;
  overflow-x: hidden;
}

.hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: #0f0f0f;
}

.hero h1 {
  font-size: 3.5em;
  background: linear-gradient(90deg, #00ffe7, #7df9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.3em;
  color: #ccc;
  margin-top: 20px;
}

.about {
  padding: 60px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.about h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #7df9ff;
}

.about p {
  font-size: 1.2em;
  line-height: 1.7;
  color: #bbb;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
}

.card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 255, 231, 0.2);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  max-width: 300px;
  text-align: left;
}

.card:hover {
  border-color: #00ffe7;
  box-shadow: 0 0 25px #00ffe7;
}

.card h3 {
  color: #00ffe7;
  font-size: 1.3em;
}

.card p {
  color: #ccc;
  font-size: 1.1em;
  margin-top: 10px;
}

footer {
  text-align: center;
  padding: 30px;
  background: #1a1a1a;
  color: #777;
}
