      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      body {
        font-family: 'Inter', sans-serif;
        background-color: #0f0f0f;
        color: #fff;
        line-height: 1.6;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      .topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
        background-color: transparent;
      }

      .top-left {
        display: flex;
        align-items: center;
      }

      .pfp-small {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
      }

      .h1-top {
        background: linear-gradient(135deg,
            #add8e6,
            #87ceeb,
            #00bfff,
            #1e90ff,
            #4169e1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .header__typer-text {
        font-size: 1.5rem;
        margin-left: 1rem;
      }

      .nav-links {
        display: flex;
        gap: 1.5rem;
      }

      .nav-links a {
        color: #61dafb;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: color 0.3s;
      }

      .nav-links a:hover {
        color: #fff;
      }

      header {
        text-align: center;
        padding: 2rem 1rem 2rem;
      }

      header h1 {
        font-size: 4rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
      }

      header p {
        font-size: 1.5rem;
        color: #aaa;
      }

      .pfp {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        margin: 1rem auto;
      }

      .lanyard {
        display: flex;
        justify-content: center;
        margin: 3rem 0;
      }

      .lanyard-card {
        background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
        padding: 1rem;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 150, 255, 0.5),
          0 0 15px rgba(0, 255, 255, 0.3);
        transition: transform 0.3s, box-shadow 0.3s;
      }

      .lanyard-card img {
        border-radius: 12px;
        display: block;
      }

      .skills {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 1.5rem;
        justify-items: center;
        padding: 2rem;
        max-width: 900px;
        margin: auto;
      }

      .skills img {
        transition: transform 0.3s, filter 0.3s;
        filter: drop-shadow(0 0 5px #61dafb);
        cursor: pointer;
      }

      .projects {
        max-width: 1000px;
        margin: 3rem auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 0 1rem;
      }

      .project-card {
        background: #1a1a1a;
        border-radius: 15px;
        padding: 1.5rem;
        transition: transform 0.3s, box-shadow 0.3s;
      }

      .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
      }

      .project-card h3 {
        margin-bottom: 0.5rem;
      }

      .project-card p {
        color: #aaa;
        font-size: 0.95rem;
      }

      footer {
        text-align: center;
        margin: 4rem 0 2rem;
        color: #666;
      }

      footer a {
        color: #61dafb;
        text-decoration: none;
      }

      @media (max-width: 600px) {
        header h1 {
          font-size: 3rem;
        }

        header p {
          font-size: 1.2rem;
        }

        .header__typer-text {
          font-size: 1.2rem;
          margin-left: 0.5rem;
        }

        .topbar {
          flex-direction: column;
          align-items: center;
          gap: 1rem;
        }

        .nav-links {
          flex-direction: column;
          align-items: center;
          gap: 0.5rem;
        }
      }