body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #000033, #0000ff);
  color: #f2f2f2;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0,0,0,0.6);
}

.logo-container {
  display: flex;
  align-items: center;
}
#app-review {
  padding: 40px 20px;
  text-align: center;
}

.app-review-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.app-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px; /* për ikonë më të butë */
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.app-links {
  text-align: left;
}

.store-button {
  display: inline-block;
  margin: 10px 5px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.store-button.ios {
  background: #000; /* App Store style */
}

.store-button.android {
  background: #3ddc84; /* Play Store green */
}

.logo {
  width: 60px;
  margin-right: 15px;
}

.app-name {
  font-size: 1.8em;
  color: #00ccff;
}

.nav-bar a {
  margin: 0 10px;
  color: #f2f2f2;
  text-decoration: none;
  font-weight: bold;
}

#hero {
  text-align: center;
  padding: 60px 20px;
}

#features {
  padding: 40px 20px;
  text-align: center;
}

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

.feature {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 10px;
  width: 200px;
}

#screenshots {
  padding: 40px 20px;
  text-align: center;
}

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

.screenshot {
  background: rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 10px;
  width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}

.footer {
  background: rgba(0,0,0,0.8);
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
}

.footer-links a {
  color: #00ccff;
  margin: 0 5px;
  text-decoration: none;
}
