
    /* Reset */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      color: #e0e6f1;
      padding: 20px;
      max-width: 900px;
      margin: auto;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    header {
      text-align: center;
      margin-bottom: 50px;
      user-select: none;
    }

    header h1 {
      font-size: 3rem;
      color: #61dafb;
      letter-spacing: 2px;
      margin-bottom: 8px;
      text-shadow: 0 0 8px #61dafb88;
    }

    header p {
      font-size: 1.3rem;
      color: #a0bcd9cc;
      font-weight: 500;
      letter-spacing: 1px;
    }

    section {
      margin-bottom: 50px;
    }

    h2 {
      border-bottom: 3px solid #61dafb;
      padding-bottom: 8px;
      margin-bottom: 25px;
      font-weight: 700;
      font-size: 2rem;
      color: #bbe1fa;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    h2 a {
      font-weight: 600;
      color: #82cfff;
      text-decoration: none;
      font-size: 1rem;
      margin-left: 12px;
      vertical-align: middle;
      transition: color 0.3s ease;
    }
    h2 a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .project {
      background: linear-gradient(145deg, #203a43, #2c5364);
      padding: 22px 28px;
      margin-bottom: 28px;
      border-radius: 12px;
      box-shadow:
        0 4px 15px rgba(97, 218, 251, 0.3),
        inset 0 0 8px rgba(97, 218, 251, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
    }

    .project:hover {
      transform: translateY(-6px);
      box-shadow:
        0 8px 30px rgba(97, 218, 251, 0.7),
        inset 0 0 15px rgba(97, 218, 251, 0.4);
    }

    .project h3 {
      margin-bottom: 12px;
      color: #61dafb;
      font-weight: 700;
      font-size: 1.7rem;
      letter-spacing: 0.5px;
      user-select: text;
    }

    .project p {
      margin-bottom: 15px;
      color: #c0d6f6dd;
      font-size: 1.05rem;
      line-height: 1.4;
      user-select: text;
    }

    .project a {
      color: #82cfff;
      text-decoration: none;
      font-weight: 600;
      margin-right: 20px;
      user-select: text;
      transition: color 0.3s ease;
    }

    .project a:hover {
      color: #a6d8ff;
      text-decoration: underline;
    }

    footer {
      text-align: center;
      color: #7890a1cc;
      font-size: 0.9rem;
      margin-top: 40px;
      padding: 15px 0 20px;
      border-top: 1px solid #203a43;
      user-select: none;
      font-weight: 500;
      letter-spacing: 0.05em;
    }

    /* Responsive */
    @media (max-width: 600px) {
      body {
        padding: 15px 12px;
      }
      header h1 {
        font-size: 2.5rem;
      }
      h2 {
        font-size: 1.7rem;
        padding-bottom: 6px;
      }
      .project h3 {
        font-size: 1.4rem;
      }
      .project p {
        font-size: 1rem;
      }
    }
