:root {
  --bg: linear-gradient(135deg, #2a2d31, #1f2226);
  --fg: #f5f5f5;
  --muted: #b7c0c8;
  --green: #6cc24a;

  --max-width: 880px;
  --text-width: 80ch;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: var(--bg);
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
  line-height: 1.55;
  padding: 48px 20px;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  background: transparent;
}

.header {
  margin-bottom: 50px;
}

.logo {
  display: block;
  margin: 0 auto 18px;
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

h1 {
  margin: 0 0 6px 24;
  font-size: 2.2rem;
  letter-spacing: 0.3px;
}

.tagline {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.content p {
  max-width: var(--text-width);
  margin: 0.9rem auto;
  text-align: center;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer {
  margin-top: 48px;
  color: var(--muted);
  font-size: 0.9rem;
}
