/* ————— Global Reset ————— */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ————— Body & Font ————— */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin: 0;
  height: 100vh;
  background:
    /* Soft gradient overlay */
    linear-gradient(135deg,
      rgba(255, 230, 200, 0.15) 0%,
      rgba(255, 200, 210, 0.15) 50%,
      rgba(220, 200, 255, 0.1) 100%),
    /* Subtle noise for non-uniformity */
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.5" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
  background-color: rgba(255, 230, 200, 0.15);
  /* Dim base */
  background-attachment: fixed;
}

/* ————— Container & Layout ————— */
.container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ————— Header / Hero ————— */
header {
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 10px;
}

/* ————— Image Styling ————— */
.header-image {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 12px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ————— Feature List ————— */
.features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 60px;
}

.features li {
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

/* ————— Buttons / Calls to Action ————— */
a.button {
  display: inline-block;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 30px;
  transition: background 0.3s ease;
}

/* ————— Footer ————— */
footer {
  margin-top: 60px;
  font-size: 0.9rem;
  color: #777;
}

/* ————— Mobile Responsive ————— */
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  a.button {
    width: 100%;
    padding: 12px;
  }
}

.screenshot-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px;
}

.screenshot {
  max-width: 30%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
}