/* styles.css for Sound Idea app landing page */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #f5f5f5;
  line-height: 1.6;
}

header {
  background-color: #1e1e1e;
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 2px solid #333;
}

header h1 {
  margin: 0;
  font-size: 2rem;
  color: #00d8ff;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 2rem;
}

section {
  margin-bottom: 2rem;
}

section h2 {
  color: #00d8ff;
  margin-bottom: 1rem;
}

p, li {
  font-size: 1rem;
  color: #ddd;
}

ul {
  list-style-type: disc;
  margin-left: 2rem;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background-color: #1e1e1e;
  border-top: 1px solid #333;
  color: #888;
}

a {
  color: #00d8ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.screenshot-grid .screenshot {
  max-width: 180px;
  text-align: center;
}

.screenshot-grid img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #444;
}
