body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #2e0f1f, #1e0000);
  color: white;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.logo {
  height: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  text-align: center;
  padding: 4rem 2rem;
}
.button {
  background-color: orange;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}
.stats {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
}
.features {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
}
.features div {
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 10px;
  width: 30%;
}