:root {
      --bg: #1a0000;
      --panel: #2b0008;
      --border: #cc0033;
      --accent: #e6003d;
      --accent-glow: #ff3366;
      --text: #ffd6e0;
      --muted: #cc6688;
    }

::selection {
  background: var(--red);
  color: #A30002;
}

::-moz-selection {
  background: var(--red);
  color: #A30002;
}

    html, body {
      height: 100%;
      margin: 0;
      padding: 0;
      background: var(--bg);
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-box {
      background: var(--panel);
      border: 2px solid var(--border);
      border-radius: 16px;
      padding: 60px;
      max-width: 800px;
      width: 90%;
      box-shadow: 0 0 40px rgba(230, 0, 61, .25);
      text-align: center;
    }

    h1 {
      font-size: 48px;
      font-weight: 700;
      margin: 0 0 32px;
      color: var(--text);
    }

    h1 span {
      color: var(--accent);
    }

    p {
      font-size: 22px;
      line-height: 1.7;
      color: var(--muted);
      margin: 20px 0;
    }

    .highlight {
      color: var(--text);
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .about-box {
        padding: 40px;
      }
      h1 {
        font-size: 38px;
      }
      p {
        font-size: 20px;
      }
    }