    body {
      margin: 0;
      padding: 0;
      max-width: 100%;
      background-color: #000;
      color: #00ff00;
      font-family: "Courier New", Courier, monospace;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* CRT flicker effect */
    body::after {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      pointer-events: none;
      background: repeating-linear-gradient(
        to bottom,
        rgba(0, 255, 0, 0.03),
        rgba(0, 255, 0, 0.03) 1px,
        transparent 1px,
        transparent 2px
      );
      z-index: 2;
    }

    /* Subtle flicker using animation */
    body {
      animation: crtFlicker 0.15s infinite;
      filter: brightness(1.03) contrast(1.1);
    }
    
    @keyframes crtFlicker {
      0% { opacity: 0.98; filter: brightness(1.02) contrast(1.1); }
      50% { opacity: 1; filter: brightness(1.05) contrast(1.15); }
      100% { opacity: 0.97; filter: brightness(1.01) contrast(1.1); }
    }

    h1 {
      font-size: 3em;
      margin-top: 50px;
      text-align: center;
      text-shadow: 0 0 5px #00ff00;
    }

    nav {
      margin: 20px 0;
      text-align: center;
    }

    nav a {
      color: #00ff00;
      text-decoration: none;
      margin: 0 15px;
      font-size: 1.2em;
      border-bottom: 1px dashed #00ff00;
      padding-bottom: 2px;
      transition: all 0.2s ease-in-out;
    }

    nav a:hover {
      color: #fff;
      border-color: #fff;
    }

    body, h1, nav a, .body-content {
        text-shadow: 0 0 1px #0f0, 0 0 3px #0f0, 0 0 5px #0f0;
    }
    
    .body-content a {
      color: #00ff00;
      text-decoration: underline;
      text-shadow: 0 0 1px #00ff00, 0 0 2px #00ff00;
      transition: all 0.2s ease-in-out;
    }
    
    .body-content a:hover {
      color: #ffffff;
      text-shadow: 0 0 2px #ffffff, 0 0 3px #ffffff;
    }
    .body-content {
      max-width: 800px;
      width: 90%;
      /**padding: 30px;**/
      line-height: 1.5;
      text-align: left;
    }
    
    .cursor {
      display: inline-block;
      width: 10px;
      background-color: #00ff00;
      animation: blink 1s infinite;
      margin-left: 5px;
    }
    
    .tool {
      padding-bottom: 30px;
    }
    
    .log-entry {
      padding-bottom: 30px;
    }
    
    @keyframes blink {
      0%, 50%, 100% { opacity: 1; }
      25%, 75% { opacity: 0; }
    }