/* === Base Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* === Base Mobile Styles === */
  body {
    background-color: #101010;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, monospace, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 15px;
    padding-top: 10px;
    max-width: 100%;
    margin: auto;
    line-height: 1.75;
    font-size: 1.1rem;
    min-height: 100vh;
  }
  
  h1, h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: left;
  }
  
  p {
    margin-bottom: 1.2em;
    white-space: pre-line;
  }
  
  .note {
    font-family: 'Courier New', monospace;
    color: #888;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    word-break: break-word;
  }
  
  em {
    font-style: italic;
    color: #ccc;
  }
  
  strong {
    font-weight: bold;
    color: #fff;
  }
  
  
  ul {
    padding-left: 1.2rem;
    margin-top: 10px;
  }
  
  ul li {
    margin-bottom: 12px;
    font-size: 1rem;
  }
  
  hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px dashed #444;
  }
  
  blockquote {
    font-style: italic;
    color: #ccc;
    border-left: 4px solid #444;
    padding-left: 1rem;
    margin: 1.5rem 0;
  }
  
  code {
    font-family: monospace;
    background: #222;
    padding: 2px 6px;
    border-radius: 3px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
  }
  
  table th,
  table td {
    border: 1px solid #fff;
    padding: 8px 12px;
    text-align: left;
  }
  
  table th {
    background-color: #333;
    color: #fff;
    font-weight: bold;
  }
  
  table tr:nth-child(even) {
    background-color: #222;
  }
  
  .banner {
    background-color: #111;
    padding: 1.5rem;
    max-width: 700px;
    color: #eee;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
  /* === Tablet and Up (>= 600px) === */
  @media (min-width: 600px) {
    body {
      font-size: 2rem;
      padding: 20px;
    }
  
    .note {
      font-size: 1.1rem;
    }
  }
  
  /* === Desktop and Up (>= 900px) === */
  @media (min-width: 900px) {
    body {
      padding: 5%;
      max-width: 700px;
      font-size: 1.2rem;
    }
  
    h1, h2 {
      font-size: 2rem;
    }
  
    .note {
      font-size: 1.2rem;
    }
  
    ul li {
      font-size: 1.1rem;
    }
  }
  