
    /* ===== Base Styles ===== */
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      background: radial-gradient(circle at top, #0d0d2b, #000);
      color: #eee;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      overflow-x: hidden;
    }

    header {
      text-align: center;
      padding: 3rem 1rem;
      background: transparent
    }

    header h1 {
      font-size: 3.5rem;
      margin: 0;
      font-weight: 700;
      color: #a970ff; /* spacey violet */
      text-shadow: 0 0 15px rgba(169,112,255,0.8);
    }

    header h2 {
        margin: 0;
        
    }

    header p {
      font-size: 1.2rem;
      margin-top: 0.5rem;
      opacity: 0.85;
      color: #bbb;
    }

    main {
      flex: 1;
      padding: 2rem 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .projects {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .project-card {
      background: rgba(255,255,255,0.05);
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(169,112,255,0.2);
      padding: 1.5rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .project-card:hover {
      transform: translateY(-5px);
       box-shadow: 0 6px 20px rgba(169,112,255,0.4);
    }

    .project-card h3 {
      margin-top: 0;
      font-size: 1.3rem;
      color: #fff;
    }

    .project-card p {
      font-size: 0.95rem;
      color: #ccc;
      margin: 0.5rem 0 1rem;
    }

    .project-card a {
      display: inline-block;
      text-decoration: none;
      color: #fff;
      background: #a970ff;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      font-size: 0.9rem;
      transition: background 0.2s ease;
    }

    .project-card a:hover {
      background: #814bd1;
    }

    footer {
       background: #0a0a1a;
      color: #777;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
    }

    footer a {
      color: #a970ff;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }
