body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0e0e0e;
  color: #ffffff;
}

header {
  background: #151515;
  padding: 20px;
  text-align: center;
}

.logo {
  height: 50px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: #fff;
}

.hero {
  padding: 60px 20px;
}

.hero h1 {
  font-size: 36px;
}

.hero .highlight {
  color: #00d084;
}

.store-buttons {
  margin-top: 20px;
}

.coming-soon {
  padding: 10px 20px;
  background: #00d084;
  color: #000;
  border: none;
  margin: 5px;
  cursor: not-allowed;
  border-radius: 5px;
}

.features-section,
.screenshots-section,
.contact-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.features-section h2,
.screenshots-section h2,
.contact-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.feature {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

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

.screenshots-grid img {
  max-width: 200px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.contact-section p {
  text-align: center;
  font-size: 18px;
}

footer {
  background: #111;
  padding: 20px;
  text-align: center;
  color: #aaa;
}
