


body {
  font-family: 'Inter', sans-serif;
  margin: 2rem auto;
  max-width: 800px;
  padding: 0 1rem;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #1DB954;
  margin-bottom: 0.5rem;
}

a {
  color: #1DB954;
  text-decoration: none;
  font-weight: 600;
}

header, section {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

ul, ol {
  margin-left: 1.5rem;
}

code {
  background: #eaeaea;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

footer {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ccc;
}

img {
  border-radius: 8px;
}


/* Modern card-like styling for screenshots */
.screenshot-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.screenshot-block {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.screenshot-block img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.screenshot-block h3 {
  margin-top: 0;
}

.screenshot-block p {
  margin-bottom: 0;
}