:root {
    --background: #f5f5f5;
    --primary: #4e4e4e;
    --accent: #c79288;
    --text: #2d2d2d;
    --button: #887f78;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text);
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
  }
  
  header h1 {
    font-size: 2.5rem;
    color: var(--primary);
  }
  
  header p {
    margin: 1rem 0 2rem;
  }
  
  .download-button {
    background-color: var(--button);
    color: #fff;
    padding: 0.8rem 1.6rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .download-button:hover {
    background-color: #6b625e;
  }
  
  .features ul {
    list-style: none;
    padding: 0;
  }
  
  .features li {
    margin: 0.5rem 0;
  }
  
  .screenshot img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }
  
  footer {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #777;
  }
  