* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
  }
  
  body {
    scroll-behavior: smooth;
  }
  
  /* Header */
  .myname-logo {
    font-size: 2em;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
  }
  
  .myname-logo:hover {
    color: greenyellow;
    text-shadow: 0 0 25px greenyellow, 0 0 50px greenyellow;
    transform: scale(1.05);
  }
  
  span {
    color: greenyellow;
  }
  
  .contact {
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
  }
  
  .contact:hover {
    background-color: greenyellow !important;
    color: #fff !important;
    box-shadow: 0 0 25px greenyellow;
  }
  
  /* Home */
  .home {
    background: #f1f1f1;
    min-height: 100vh;
  }
  
  .home h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.2;
  }
  
  .home h3 {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }
  
  .home p {
    font-size: 1rem;
  }
  
  /* Buttons */
  .btn-1,
  .btn-2 {
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
  }
  
  .btn-1 {
    background: #000;
    color: #fff;
  }
  
  .btn-1:hover {
    background: #fff;
    color: #000;
    border: 2px solid #000;
  }
  
  .btn-2 {
    background: greenyellow;
    color: #000;
    border: 2px solid #000;
  }
  
  .btn-2:hover {
    background: #fff;
    color: greenyellow;
  }
  
  /* About */
  .about {
    background-color: #000;
  }
  
  .about img {
    max-width: 250px;
    box-shadow: 0 0 25px greenyellow, 0 0 50px white;
    border-radius: 50%;
  }
  
  /* Contact */
  .contact-form input,
  .contact-form textarea {
    background: #f0f0f0;
    border-radius: 0.8rem;
    font-size: 1rem;
  }
  
  /* Footer */
  .footer .social a {
    font-size: 24px;
    color: #fff;
    border: 2px solid greenyellow;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    box-shadow: inset 0 0 10px greenyellow, 0 0 10px greenyellow;
    transition: 0.2s ease;
  }
  
  .footer .social a:hover {
    transform: scale(1.2) translateY(-5px);
    color: greenyellow;
    border: 4px solid greenyellow;
  }
  
  .footer a {
    color: #fff;
    transition: 0.3s ease;
  }
  
  .footer a:hover {
    border-bottom: 3px solid greenyellow;
  }
  .terminal-popup {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: #111;
    color: greenyellow; /* fixed */
    border-radius: 10px;
    box-shadow: 0 0 30px greenyellow; /* fixed */
    z-index: 2000;
    animation: fadeIn 0.3s ease-in-out;
    font-family: 'Courier New', Courier, monospace;
  }
  
  .terminal-header {
    border-bottom: 1px solid greenyellow; /* fixed */
    font-weight: bold;
  }
  
  .terminal-body {
    max-height: 400px;
    overflow-y: auto;
    padding-top: 10px;
  }
  
  #terminal-input-line {
    display: flex;
  }
  
  #terminal-input {
    outline: none;
    flex: 1;
    color: greenyellow; /* fixed */
  }
  
  .terminal-popup::-webkit-scrollbar {
    width: 8px;
  }
  
  .terminal-popup::-webkit-scrollbar-thumb {
    background: greenyellow; /* fixed */
    border-radius: 4px;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }
  
  #terminal-input:focus {
    caret-color: greenyellow; /* fixed cursor color */
  }
  
  /* Optional: make the caret a little more visible like a terminal */
  #terminal-input {
    outline: none;
    color: greenyellow; /* fixed */
    white-space: pre; /* preserve spaces */
    flex: 1;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
  }
  