:root {
    color-scheme: dark;
    --bg: #0b0f14;
    --fg: #e6edf3;
    --muted: #94a3b8;
    --accent: #22d3ee;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
  }
  
  body {
    margin: 0;
    background: radial-gradient(1200px 800px at 70% -20%, #0e1622 0%, #0b0f14 40%, #070a0f 100%);
    color: var(--fg);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
  }
  
  .content {
    text-align: center;
    max-width: 720px;
  }
  
  .typing-container {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }

  .terminal {
    width: min(720px, 92vw);
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
    overflow: hidden;
  }

  .typing {
    margin: 0;
    color: var(--fg);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: clamp(12px, 2.2vw, 14px);
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
  }

  .typing::after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 1.1em;
    margin-left: 2px;
    background: var(--fg);
    vertical-align: -0.18em;
    animation: caret-blink 1.2s steps(1, end) infinite;
  }
  
  h1 {
    margin: 16px 0 8px;
    font-size: clamp(28px, 5vw, 42px);
    letter-spacing: 0.2px;
  }
  
  p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: clamp(14px, 2.5vw, 18px);
  }
  
  .hint {
    margin-top: 8px;
    color: #7a8696;
    font-size: 13px;
    letter-spacing: 0.3px;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .typing::after { animation: none; }
  }

  @keyframes caret-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
  }
  
  
  