* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "JetBrains Mono", monospace;
    background-color: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
  }
  
  .container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
  }
  
  .header {
    margin-bottom: 2rem;
  }
  
  .name {
    font-size: 2.5rem;
    font-weight: 500;
    color: #00ff88;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
  }
  
  .title {
    font-size: 1.2rem;
    color: #888;
    font-weight: 300;
    margin-bottom: 1rem;
  }
  
  .prompt {
    color: #00ff88;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .link {
    display: inline-block;
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    min-width: 200px;
    background-color: rgba(255, 255, 255, 0.02);
  }
  
  .link:hover {
    border-color: #00ff88;
    color: #00ff88;
    background-color: rgba(0, 255, 136, 0.05);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
  }
  
  .link::before {
    content: "$ ";
    color: #00ff88;
    margin-right: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .name {
      font-size: 2rem;
    }
  
    .container {
      padding: 1rem;
    }
  
    .link {
      min-width: 180px;
    }
  }
  
  .cursor {
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    0%,
    50% {
      opacity: 1;
    }
    51%,
    100% {
      opacity: 0;
    }
  }
  