body {
  font-family: "Poppins", sans-serif;
  background: #fffaf5;
  margin: 0;
  color: #333;
  text-align: center;
}

header {
  background: #ffd5a3;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  color: #5b2c00;
  transition: color 0.2s;
}

nav a.active,
nav a:hover {
  color: #ff7b00;
}

.hero {
  padding: 40px 20px;
}

.hero h1 {
  font-size: 2.8em;
  color: #ff7b00;
}

.hero p {
  max-width: 600px;
  margin: 10px auto;
  font-size: 1.1em;
}

.screenshots {
  background: #fff;
  padding: 40px 20px;
}

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

footer {
  background: #ffd5a3;
  padding: 15px;
  font-size: 0.9em;
  margin-top: 40px;
}