 @import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #000;
      color: #0f0;
      font-family: 'VT323', monospace;
      line-height: 1.6;
      padding: 20px;
      overflow-x: hidden;
    }

    .crt-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
      );
      pointer-events: none;
      z-index: 999;
      animation: flicker 0.15s infinite;
    }

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

    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      border: 1px solid #0f0;
    }

    .header {
      text-align: center;
      margin-bottom: 30px;
    }

    .ascii-art {
      white-space: pre;
      font-size: 12px;
      line-height: 1.2;
      text-align: center;
      margin: 20px 0;
    }

    .terminal-window {
      border: 2px solid #0f0;
      padding: 20px;
      margin: 20px 0;
      position: relative;
    }

    .terminal-header {
      position: absolute;
      top: -15px;
      left: 20px;
      background: #000;
      padding: 0 10px;
    }
	
	.terminal-window a {
		color: #0f0;
	}
	
	.terminal-window blockquote:before {
		content: "[";
	}
	
	.terminal-window blockquote:after {
		content: "]";
	}

    .blink {
      animation: blink 1s step-end infinite;
    }

    @keyframes blink {
      50% { opacity: 0; }
    }

    .menu {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 20px 0;
    }

    .menu a {
      color: #0f0;
      text-decoration: none;
      padding: 5px 15px;
      border: 1px solid #0f0;
      transition: all 0.3s ease;
    }

    .menu a:hover {
      background: #0f0;
      color: #000;
    }

    .popup {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #000;
      border: 1px solid #0f0;
      padding: 10px;
      animation: slideIn 0.5s ease-out;
    }

    @keyframes slideIn {
      from { transform: translateX(100%); }
      to { transform: translateX(0); }
    }

    .kawaii-cursor {
      cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" style="fill:none;stroke:%230f0;stroke-width:2px;"><circle cx="10" cy="10" r="8"/><circle cx="7" cy="8" r="1" style="fill:%230f0"/><circle cx="13" cy="8" r="1" style="fill:%230f0"/><path d="M7,12 Q10,14 13,12"/></svg>') 10 10, auto;
    }