body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    font-family: 'Segoe UI', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1e3d3d;
  }
  
  /* Simulated Mac-style window */
  .code-window {
    background: #ffffffee;
    border-radius: 12px;
    width: 85%;
    max-width: 650px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeIn 1.5s ease-in;
  }
  
  .window-header {
    background: #e0e0e0;
    padding: 0.5rem 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
  }
  
  .red { background: #ff5f56; }
  .yellow { background: #ffbd2e; }
  .green { background: #27c93f; }
  
  .window-body {
    padding: 2rem;
    text-align: left;
  }
  
  h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #d49600;
  }
  
  .typed,
  .contact-info {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    white-space: pre-wrap;
    margin-bottom: 1rem;
  }
  
  /* Email link styling */
  .contact-info a {
    color: #008080;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  /* Fade-in animation */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
  }
  