<style>
  body {
    background: var(--bg, #fff);
    color: var(--fg, #000);
    font-family: Georgia, serif;
    margin: 0;
    padding: 1rem;
  }

  .hero {
    text-align: center;
    padding: 2rem 1rem;
  }
  .hero pre {
    font-family: monospace;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--fg, #000);
  }
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 1rem auto;
  }
  .cta-buttons a {
    text-decoration: none;
    text-align: center;
    padding: 0.75rem;
    background: var(--accent, #0055cc);
    color: white;
    border-radius: 5px;
    transition: 0.2s;
  }
  .cta-buttons a:hover {
    opacity: 0.9;
  }
</style>
