body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

header h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.3em;
}

section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.features ul {
  list-style: disc;
  margin-left: 20px;
}

.screenshots .images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.screenshots img {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 15px #8e2de2;
}

.download .button {
  display: inline-block;
  margin: 10px;
  padding: 15px 30px;
  background: #8e2de2;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}

.download .button:hover {
  background: #4a00e0;
}

footer {
  text-align: center;
  padding: 20px;
  background: #222;
}

header {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

header .logo {
  width: 120px; /* adjust as needed */
  height: auto;
  margin-bottom: 20px;
  border-radius: 15px; /* optional: rounded corners */
  box-shadow: 0 0 10px #fff; /* optional: glow effect */
}

header h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.3em;
}

header nav {
  margin-top: 20px;
}

header nav .nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
  transition: 0.3s;
}

header nav .nav-link:hover {
  color: #ffd700;
}
