@import url(main.css);
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  background: linear-gradient(145deg, #000, #111);
}

.hero-content {
  animation: fadeIn 2s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}

.hero h1 span {
  color: #fff;
  background: #111;
  padding: 0 5px;
  border-radius: 5px;
  animation: highlight 2s infinite alternate;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.8;
}

.cta-button {
  margin: top 2rem;
  padding: 10px 20px;
  font-size: 1rem;
  color: #000;
  background: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease, background 0.3s ease;
  width: max-content;
}

.cta-button:hover {
  background: #ddd;
  transform: scale(1.1);
}

.features {
  padding: 50px 20px;
  text-align: center;
  background: #111;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature {
  background: #000;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature p {
  opacity: 0.8;
}

.footer {
  text-align: center;
  padding: 10px 0;
  background: #000;
  border-top: 1px solid #333;
  opacity: 0.8;
}

.footer p {
  font-size: 0.9rem;
}