
    :root {
      --bg: #ff8800;
      --text: #111;
      --accent: #555;
      --border: #e5e5e5;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Perpetua", Roboto, Helvetica, Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      line-height: 1.5;
    }

    .container {
      max-width: 600px;
      padding: 40px 20px;
      text-align: center;
    }

    h1 {
      font-size: 2rem;
      font-weight: 500;
      margin-bottom: 10px;
    }

    p {
      color: var(--accent);
      margin-bottom: 30px;
    }

    .divider {
      width: 40px;
      height: 2px;
      background: var(--text);
      margin: 20px auto;
    }

    footer {
      margin-top: 40px;
      font-size: 0.85rem;
      color: var(--accent);
    }

    a {
      color: inherit;
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      transition: border-color 0.2s ease;
    }

    a:hover {
      border-color: var(--text);
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 1.6rem;
      }
    }