@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at center, #0d2a17, #000);
  font-family: 'Inter', sans-serif;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-wrapper {
  max-width: 600px;
  width: 90%;
  padding: 20px;
}

.features-card {
  background-color: #121212;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #7BA872;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #ccc;
}

.features-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
  font-size: 1rem;
  line-height: 2;
}

.features-list li {
  background: #1e1e1e;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 10px;
  transition: background 0.3s ease;
}

.features-list li:hover {
  background: #2a2a2a;
}

.footer-text {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #888;
}

#ora {
  font-size: 15px;
  color: #888;
  margin-top: 1px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
