/* Base Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1e1b2e;
    color: #f5f5f5;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 960px;
    margin: auto;
    padding: 2rem 0;
  }
  
  header {
    background: linear-gradient(135deg, #3c1c64, #6b2d94);
    text-align: center;
    padding: 3rem 0;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #ffffff;
  }
  
  .tagline {
    font-size: 1.1rem;
    color: #d1c4e9;
    margin-top: 0.5rem;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #ba8ff7;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section.alt {
    background-color: #2d2741;
  }
  
  h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #e0bbff;
  }
  
  .project-list li,
  .blog-links li {
    margin-bottom: 1rem;
    font-family: 'Courier New', Courier, monospace;
    background: #322a4b;
    padding: 1rem;
    border-radius: 10px;
  }
  
  .project-list strong {
    color: #f2dfff;
  }
  
  .blog-links a {
    color: #d8b4fe;
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  
  .blog-links a:hover {
    color: #ffffff;
  }

  .icon img {
    height: 24px;
    width: 24px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1);
  }
  
  .icon img:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
  }
  
  .social-links .icon {
    font-size: 1.5rem;
    color: #e0bbff;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .social-links .icon:hover {
    transform: scale(1.2);
    color: #ffffff;
  }
  
  footer {
    background-color: #160f2e;
    text-align: left;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: #bda6d8;
  }
  
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  
    .project-list li,
    .blog-links li {
      font-size: 0.95rem;
    }
  }
  