                                                                                   
  @font-face {                                                                                                                          
    font-family: 'VT323';                                                                                                             
    src: url('VT323-Regular.ttf') format('truetype');                                                                                   
  }                                                                                                                                     

  @font-face {
    font-family: 'OpenDyslexic';
    src: url('OpenDyslexic-Regular.otf') format('opentype');
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background: #000;
    color: #00ff00;
    font-family: 'VT323', monospace;
    font-size: 20px;
    line-height: 1.6;
  }

  .container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
  }

  header {
    border-bottom: 1px solid #00ff00;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }

  header h1 {
    font-size: 48px;
    letter-spacing: 4px;
  }

  .post {
    border: 1px solid #00ff00;
    padding: 20px;
    margin-bottom: 20px;
  }

  .post-date {
    font-size: 16px;
    opacity: 0.6;
    margin-bottom: 10px;
  }

  .post-content p {
    margin-bottom: 10px;
  }

  a {
    color: #00ff00;
    text-decoration: underline;
  }

  a:hover {
    color: #fff;
  }

  /* WARNING PAGE */
  .warning-page {
    text-align: center;
    padding-top: 60px;
  }

  .header-img {
    margin-bottom: 40px;
  }

  .header-img img {
    max-width: 300px;
    image-rendering: pixelated;
  }

  .px {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: transparent;
  }

  .px.g {
    background: #00ff00;
  }

  .px.w {
    background: #fff;
  }

  .cat-row, .tri-row {
    display: flex;
    justify-content: center;
  }

  .warning-title {
    font-size: 36px;
    margin-bottom: 30px;
    animation: flicker 1.5s infinite;
  }

  .warning-box {
    border: 2px solid #00ff00;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 24px;
  }

  .warning-list {
    list-style: none;
    margin-bottom: 40px;
    font-size: 22px;
  }

  .warning-list li {
    margin-bottom: 10px;
  }

  .enter-btn {
    display: inline-block;
    color: #00ff00;
    font-family: 'VT323', monospace;
    font-size: 28px;
    text-decoration: none;
    border: 1px solid #00ff00;
    padding: 15px 30px;
    transition: all 0.2s;
  }

  .enter-btn:hover {
    background: #00ff00;
    color: #000;
  }

  @keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }

  /* 404 PAGE */
  .lost-page {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
  }

  .matrix-col {
    position: absolute;
    left: -100%;
    top: 0;
    font-family: 'VT323', monospace;
    font-size: 32px;
    color: #00ff00;
    opacity: 0.3;
    white-space: nowrap;
    animation: fall linear infinite;
  }

  @keyframes fall {
    0% { left: -100%; }
    100% { left: 100%; }
  }

  .lost-content {
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .lost-title {
    font-size: 72px;
    margin-top: 30px;
    animation: flicker 1.5s infinite;
  }

  .eye {
    transition: background 0.1s;
  }

  .eye.closed {
    background: #00ff00;
  }

  .slow-text {
    position: fixed;
    top: 50%;
    left: 100%;
    white-space: nowrap;
    font-size: 300px;
    color: #00ff00;
    opacity: 0.15;
    z-index: 0;
    animation: crawl 40s linear infinite;
  }

  @keyframes crawl {
    0% { transform: translateX(0); }
    100% { transform: translateX(-300%); }
  }

  /* ACCESSIBILITY */
  .accessibility-bar {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 300px;
    justify-content: flex-end;
  }

  .access-btn {
    background: #000;
    color: #00ff00;
    border: 1px solid #00ff00;
    font-family: 'VT323', monospace;
    font-size: 16px;
    padding: 8px 12px;
    cursor: pointer;
  }

  .access-btn:hover {
    background: #00ff00;
    color: #000;
  }

  body.dyslexic, body.dyslexic h1, body.dyslexic h2, body.dyslexic h3, body.dyslexic p, body.dyslexic .access-btn {
    font-family: 'OpenDyslexic', sans-serif !important;
  }

  body.big-text {
    font-size: 28px;
  }

  body.big-text h2 {
    font-size: 36px;
  }

  body.big-text h3 {
    font-size: 30px;
  }

  body.wide-spacing {
    letter-spacing: 2px;
    word-spacing: 6px;
    line-height: 2.2;
  }

  body.high-contrast {
    background: #000 !important;
    color: #fff !important;
  }

  body.high-contrast .post, body.high-contrast .warning-box, body.high-contrast .enter-btn {
    border-color: #fff !important;
  }

  body.high-contrast a, body.high-contrast h2, body.high-contrast h3, body.high-contrast .warning-title {
    color: #fff !important;
  }

  body.high-contrast .access-btn {
    color: #fff !important;
    border-color: #fff !important;
  }

  body.high-contrast .access-btn:hover {
    background: #fff !important;
    color: #000 !important;
  }

  body.no-motion * {
    animation: none !important;
    transition: none !important;
  }

  body.amber {
    color: #ffbf00 !important;
  }

body.amber header {
    border-color: #ffbf00 !important;
  }

  body.amber a, body.amber h2, body.amber h3 {
    color: #ffbf00 !important;
  }

  body.amber .post, body.amber .warning-box, body.amber .enter-btn {
    border-color: #ffbf00 !important;
  }

  body.amber .access-btn {
    color: #ffbf00 !important;
    border-color: #ffbf00 !important;
  }

  body.amber .access-btn:hover {
    background: #ffbf00 !important;
    color: #000 !important;
  }
