:root {
  --bg: #ffffff;
  --text: #222222;
  --accent: #007aff;
  --secondary-bg: #f4f4f4;
}

[data-theme="dark"] {
  --bg: #121212;
  --text: #eeeeee;
  --accent: #0a84ff;
  --secondary-bg: #1e1e1e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.hero {
  text-align: center;
  padding: 3rem 1rem;
  background-color: var(--secondary-bg);
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

.tagline {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.download-button {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.download-button:hover {
  background-color: darken(var(--accent), 10%);
}

.description, .screenshots {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: auto;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gallery img {
  width: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--secondary-bg);
  font-size: 0.9rem;
}

footer button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: var(--accent);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.description p:last-of-type {
  margin-bottom: 1rem; /* reduce from default 2rem+ */
}

.description {
  padding: 2rem 1rem 1rem; /* Top: 2rem, sides: 1rem, bottom: 1rem */
}

.screenshots {
  padding: 1rem 1rem 2rem; /* Top: 1rem, sides: 1rem, bottom: 2rem */
}

.screenshots {
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  padding-top: 2rem;
}

.app-icon {
  width: 48px;
  height: 48px;
  vertical-align: middle;
  margin-right: 0.5rem;
  border-radius: 10px; /* optional: for a rounded look */
}

.hero h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.app-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

