/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

    :root {
      --bg: #00000;
      --panel: #1a1d23;
      --text: #d1d5db;
      --muted: #9aa0aa;
      --accent: #10a37f;
      --accent-hover: #b9ff66;
      --border: #2a2e36;
      --glow: rgba(16,163,127,0.35);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      min-height: 100vh;
      background: radial-gradient(circle at top, #1e2d41, #1c293d, #1a2638, #182234, #161f30, #151c2c, #131927, #121623, #10131e, #0e1019, #0a0c14, #06070d);
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
                   Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .container {
      max-width: 2048px;
      padding: 2.5rem;
      background: linear-gradient(180deg, var(--panel), #14171c);
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 20px 60px rgba(0,0,0,0.6),
        0 0 40px var(--glow);
    }

    h1 {
      margin: 0 0 0.5rem 0;
      font-size: 2.2rem;
      letter-spacing: -0.02em;
      color: #f3f4f6;
    }

    .subtitle {
      color: var(--accent);
      font-size: 0.95rem;
      letter-spacing: 0.08em;
      text-transform: lowercase;
      margin-bottom: 1.5rem;
    }
    
    .menu {
      color: var(--text);
      font-size: 0.95rem;
      letter-spacing: 0.08em;
      text-transform: lowercase;
      margin-bottom: 1.5rem;
    }
    
    a {
      color: var(--accent);
      font-size: 0.95rem;
      letter-spacing: 0.08em;
      text-transform: lowercase;
      text-decoration: underline;
      margin-bottom: 1.5rem;
    }
    
    a:hover {
      color: var(--accent-hover)
    }

    p {
      line-height: 1.6;
      margin: 0 0 1.2rem 0;
      color: var(--text);
    }
    
    figcaption {
      font-size: 0.8rem;
      font-style: italic;
      text-align: center;
    }

    .muted {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .divider {
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border), transparent);
      margin: 1rem 0;
    }

    .status {
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 0.9rem;
      background: #0b0d11;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1rem;
      color: var(--muted);
    }

    .status span {
      color: var(--accent);
    }
    
    .pixel {
    position: absolute;
    width: 3px;
    height: 3px;
    transition: all 0.3s ease-in-out;
    }

    footer {
      font-size: 0.8rem;
      color: var(--muted);
      text-align: right;
    }