  :root {
    --dark-bg: #0a0a23;
    --card-bg-dark:rgb(5, 10, 48);
    --text-dark: #ffffff;
    --highlight: #22d3ee;
    --accent: #6366f1;
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.4);
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom right, #0d181d, #234651, rgb(19, 23, 56));
    color: var(--text-dark);
    margin: 0;
    padding: 2rem;
  }
  
  .project-container {
    max-width: 1000px;
    margin: auto;
    border-radius: 1rem;
    padding: .5rem;
  }
  
  .project-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--highlight);
    margin-bottom: 1.5rem;
  }
  
  .project-links {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .project-links a {
    margin: 0 1rem;
    font-size: 2rem;
    color: var(--text-dark);
    text-decoration: none;
  }
  
  .project-links .live-button {
    background: var(--accent);
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 0.4rem;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    text-decoration: none;
  }
  
  .project-links .live-button:hover {
    background: #4f46e5;
  }

  .git-button i{
    display: inline-block;
    transform: scale(2);
  }
  
  .section-box {
    background-color: var(--card-bg-dark);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-dark);
    margin-bottom: 2rem;
  }
  
  .section-box h3 {
    font-size: 1.8rem;
    color: var(--highlight);
    margin-bottom: 1rem;
  }
  
  .section-box p, .section-box ul, .section-box ol {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
  }
  
  .section-box li {
    margin-bottom: 0.5rem;
  }
  
  .highlight {
    color: var(--highlight);
  }
  
  @media (max-width: 768px) {
    .project-title {
      font-size: 2rem;
    }
  
    .project-links a {
      font-size: 1.5rem;
    }
  
    .section-box p {
      font-size: 0.95rem;
    }
  }