* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #0f172a;
      color: #fff;
      line-height: 1.6;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 10%;
      background: #0f172a;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }

    .logo {
      font-size: 24px;
      font-weight: 700;
      color: #38bdf8;
      text-decoration: none;
      transition: 0.3s;
    }
    
    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #fff;
      transition: 0.3s;
    }

    nav a:hover {
      color: #38bdf8;
    }

    .hero {
      height: 100dvh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 10%;
      text-align: center;
      background: linear-gradient(to right, #0f172a, #1e293b);
    }

    .hero h2 {
      font-size: 48px;
      margin-bottom: 20px;
    }

    .hero span {
      color: #38bdf8;
    }

    .hero p {
      max-width: 600px;
      margin: auto;
      margin-bottom: 30px;
      color: #cbd5e1;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 12px;
    }
    .btn {
      display: inline-block;
      padding: 12px 25px;
      background: #38bdf8;
      color: #0f172a;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn:hover {
      background: #0ea5e9;
    }

    section {
      padding: 80px 10%;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
      font-size: 32px;
      color: #38bdf8;
    }

    .about, .projects {
      background: #1e293b;
      border-radius: 10px;
      padding: 40px;
    }
    .about p {
      padding: 12px;
    }

    .skills {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }

    .skill {
      background: #334155;
      padding: 10px 20px;
      border-radius: 20px;
      font-size: 14px;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .project-card {
      background: #334155;
      padding: 20px;
      border-radius: 10px;
      transition: 0.3s;
      text-decoration: none;
      color: inherit;
    }

    .project-card:hover {
      transform: translateY(-5px);
    }

    .project-card:visited {
      color: inherit;
    }

    footer {
      text-align: center;
      padding: 20px;
      background: #0f172a;
      color: #94a3b8;
    }

    @media(max-width: 768px) {
      .hero {
        height: 95dvh;
      }
      .hero h2 {
        font-size: 32px;
      }
      .hero span {
        display: block;
      }
      nav {
        display: none;
      }
      header {
        justify-content: center;
      }
    }

    @media (hover: hover) {
      .logo:hover {
        color: #fff;
      }
    }

    .logo:active {
        color: #fff;
      }
