:root {
    --primary-color: #00897b;
    --accent-color: #00bfa5;
    --background: linear-gradient(to bottom right, #e0f8f1, #ffffff);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--background);
    color: #333;
    text-align: center;
}

header {
    padding: 40px 20px;
}

h1 {
    font-size: 3rem;
    color: var(--primary-color);
}

p {
    font-size: 1.2rem;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.2s ease;
}

.button:hover {
    opacity: 0.9;
}

.screenshots {
    padding: 30px 10px;
}

.screenshots img {
    width: 200px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.screenshots {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 20px;
  text-align: center;
}

.screenshot-card {
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  max-width: 300px;
  flex: 1;
  transition: transform 0.2s ease;
}

.screenshot-card:hover {
  transform: translateY(-2px);
}

.section-heading {
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.screenshot-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.screenshot-card h3 {
  font-size: 1.1rem;
  margin-top: 12px;
  color: var(--primary-color);
}

.screenshot-card p {
  font-size: 0.95rem;
  color: #444;
  margin-top: 4px;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
}

.support {
    padding: 40px 20px;
}

.support h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.support a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.support a:hover {
    text-decoration: underline;
}

footer {
    padding: 20px;
    font-size: 0.9rem;
    color: #666;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
