:root {
  --bg-gradient-start: #fffaf3;
  --bg-gradient-end: #ffe9d6;
  --text-main: #23272f;
  --accent-orange: #e86c13;
  --accent-orange-dark: #b94e0d;
  --footer-bg: rgba(232, 108, 19, 0.08);
  --shadow-accent: rgba(246, 134, 42, 0.20);
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text-main);
}

h1 {
  font-size: 4rem;
  margin: 0.5rem 0;
  text-shadow: 1px 1px 2px var(--shadow-accent);
  text-align: center;
  color: var(--accent-orange);
}

.courier-prime {
  font-family: 'Courier Prime', monospace;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
  max-width: 90vw;
  color: var(--text-main);
}

p {
  text-align: center;
  max-width: 90vw;
  color: var(--text-main);
}

footer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-main);
  text-align: center;
  max-width: 90vw;
  background: var(--footer-bg);
  border-radius: 8px;
  padding: 0.5rem 1rem;
}

a {
  color: var(--accent-orange);
  text-decoration: none;
  margin: 0.5rem 0;
  font-weight: bold;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-orange-dark);
  text-decoration: underline;
}

@media (max-width: 600px) {
  body {
    padding: 1rem;
  }
  svg {
    max-width: 70vw;
  }
  h1 {
    font-size: 2.2rem;
  }
  .courier-prime,
  p,
  footer {
    font-size: 1rem;
    max-width: 100vw;
  }
}
