  <style>
    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background: #000;
      color: #39ff14;
      font-family: 'VT323', monospace;
      font-size: 18px;
      overflow-x: hidden;
      position: relative;
    }

    /* Matrix rain background */
    .matrix-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: 0.1;
    }

    /* Scanlines effect */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(57, 255, 20, 0.03) 2px,
        rgba(57, 255, 20, 0.03) 4px
      );
      pointer-events: none;
      z-index: 1000;
    }

    header {
      background-color: #111;
      border-bottom: 2px dashed #39ff14;
      padding: 20px;
      text-align: center;
      box-shadow: 0 0 30px #39ff1430;
      position: relative;
    }

    h1 {
      margin: 0;
      font-size: clamp(24px, 5vw, 48px);
      text-shadow: 0 0 10px #39ff14;
      animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from {
        text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 30px #39ff14;
      }
      to {
        text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14, 0 0 15px #39ff14;
      }
    }

    /* Blinking cursor */
    .cursor {
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
    }

    nav {
      text-align: center;
      background: #111;
      padding: 15px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px #39ff1430;
    }

    nav a {
      color: #39ff14;
      margin: 0 15px;
      text-decoration: none;
      padding: 8px 16px;
      border: 1px solid transparent;
      transition: all 0.3s ease;
      display: inline-block;
    }

    nav a:hover {
      border: 1px solid #39ff14;
      box-shadow: 0 0 15px #39ff1460;
      background: #39ff1410;
      text-shadow: 0 0 8px #39ff14;
    }

    section {
      max-width: 1000px;
      margin: auto;
      padding: 20px;
    }

    .terminal-box {
      background: #111;
      border: 2px solid #39ff14;
      padding: 20px;
      margin-bottom: 30px;
      box-shadow: 0 0 20px #39ff1460;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
      position: relative;
      overflow: hidden;
    }

    .terminal-box.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .terminal-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, #39ff1420, transparent);
      transition: left 0.5s;
    }

    .terminal-box:hover::before {
      left: 100%;
    }

    .prompt {
      color: #39ff14;
      margin-bottom: 10px;
      text-shadow: 0 0 5px #39ff14;
    }

    .highlight {
      color: #00f5d4;
      text-shadow: 0 0 5px #00f5d4;
    }

    .typewriter {
      overflow: hidden;
      white-space: nowrap;
      margin: 0 auto;
      animation: typing 2s steps(30, end), blink-caret 0.75s step-end infinite;
    }

    @keyframes typing {
      from { width: 0 }
      to { width: 100% }
    }

    /* Enhanced lists */
    ul {
      list-style: none;
      padding: 0;
    }

    li {
      margin: 10px 0;
      padding: 8px 0;
      border-left: 3px solid transparent;
      padding-left: 15px;
      transition: all 0.3s ease;
    }

    li:hover {
      border-left-color: #39ff14;
      background: #39ff1410;
      text-shadow: 0 0 5px #39ff14;
      transform: translateX(5px);
    }

    li::before {
      content: '▶ ';
      color: #39ff14;
      font-weight: bold;
    }

    /* Contact links styling */
    #contact a {
      color: #39ff14;
      text-decoration: none;
      padding: 8px 12px;
      border: 1px solid #39ff14;
      margin: 5px;
      display: inline-block;
      transition: all 0.3s ease;
    }

    #contact a:hover {
      background: #39ff14;
      color: #000;
      box-shadow: 0 0 15px #39ff14;
      transform: scale(1.05);
    }

    footer {
      text-align: center;
      padding: 20px;
      border-top: 2px dashed #39ff14;
      margin-top: 50px;
      background: #111;
    }

    /* Status bar */
    .status-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #111;
      border-top: 1px solid #39ff14;
      padding: 5px 20px;
      font-size: 14px;
      z-index: 100;
      display: flex;
      justify-content: between;
    }

    .status-left {
      flex: 1;
    }

    .status-right {
      color: #00f5d4;
    }

    /* Easter egg - hidden terminal */
    .hidden-terminal {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #000;
      border: 2px solid #39ff14;
      padding: 20px;
      width: 80%;
      max-width: 600px;
      height: 400px;
      z-index: 1000;
      display: none;
      overflow-y: auto;
    }

    .hidden-terminal.show {
      display: block;
      animation: slideIn 0.5s ease;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translate(-50%, -60%);
      }
      to {
        opacity: 1;
        transform: translate(-50%, -50%);
      }
    }

    .terminal-input {
      background: transparent;
      border: none;
      color: #39ff14;
      font-family: 'VT323', monospace;
      font-size: 18px;
      outline: none;
      width: 100%;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      section {
        padding: 10px;
      }

      .terminal-box {
        padding: 15px;
        margin-bottom: 20px;
      }

      nav a {
        margin: 5px;
        font-size: 16px;
      }

      .hidden-terminal {
        width: 95%;
        height: 300px;
      }
    }

    /* Glitch effect for special elements */
    .glitch {
      animation: glitch 0.3s infinite;
    }

    @keyframes glitch {
      0% {
        transform: translate(0);
      }
      20% {
        transform: translate(-2px, 2px);
      }
      40% {
        transform: translate(-2px, -2px);
      }
      60% {
        transform: translate(2px, 2px);
      }
      80% {
        transform: translate(2px, -2px);
      }
      100% {
        transform: translate(0);
      }
    }
  </style>