    /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }    

    body {
      font-family: 'Segoe UI', sans-serif;
      color: #e0e0e0;
      overflow-x: hidden;
    }

    /* Matrix Rain Canvas */
    #matrix {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      background: black;
    }

    /* Content Layout */
    header, nav, .section, footer {
      background: rgba(0, 0, 0, 0.6);
      border-radius: 12px;
      padding: 20px;
      margin: 20px;
      box-shadow: 0 0 15px rgba(0,255,128,0.3);
    }

    header {
      display: flex;
      align-items: center;
      gap: 15px;
      border-bottom: 2px solid #0f0;
    }

    header img {
      width: 75px;
      border-radius: 12px;
      box-shadow: 0 0 20px #0f0;
      transition: transform 0.4s ease;
    }

    header img:hover {
      transform: scale(1.15) rotate(6deg);
    }

    h1 {
      font-size: 2.5em;
      color: #0f0;
      text-shadow: 0 0 15px #0f0;
    }

    .subtitle {
      font-size: 14px;
      color: #aaa;
      letter-spacing: 2px;
    }

    nav {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    nav a {
      padding: 10px 18px;
      color: #0f0;
      text-decoration: none;
      font-weight: bold;
      border: 2px solid #0f0;
      border-radius: 8px;
      transition: 0.3s;
    }

    nav a:hover {
      background: #0f0;
      color: black;
      box-shadow: 0 0 20px #0f0;
    }

    .section h2 {
      color: #0f0;
      text-shadow: 0 0 10px #0f0;
      margin-bottom: 15px;
    }

    ul {
      list-style: none;
    }

    li {
      margin: 8px 0;
    }

    li::before {
      content: "⚡ ";
      color: #0f0;
    }

    .quote {
      font-style: italic;
      color: #bbb;
      border-left: 3px solid #0f0;
      padding-left: 10px;
      margin-top: 10px;
    }

    footer {
      text-align: center;
      font-size: 13px;
      border-top: 2px solid #0f0;
      box-shadow: 0 -3px 15px rgba(0,255,128,0.2);
    }

    footer a {
      color: #0f0;
      text-decoration: none;
    }

    footer a:hover {
      text-shadow: 0 0 10px #0f0;
    }

