* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
  }
  
  body {
    background: linear-gradient(135deg, #6a00f4, #000a75);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
  }
  
  header {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
  }
  
  .header-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .header-nav {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  
  .header-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .header-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
  
  .logo-container {
    width: 70px;
    height: 70px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  }
  
  .logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
  }
  
  section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  .card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-8px);
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  
  .about-photo {
    flex: 1 1 200px;
  }
  
  .about-photo img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    animation: pixelate 1.5s steps(10) forwards;
    opacity: 0;
  }
  
  @keyframes pixelate {
    0% {
      filter: blur(20px);
      opacity: 0;
    }
    50% {
      filter: blur(5px);
      opacity: 0.5;
    }
    100% {
      filter: blur(0);
      opacity: 1;
    }
  }
  
  .about-text {
    flex: 2 1 300px;
  }
  
  .skills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .skill-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
  }
  
  .skill-icon.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .skill-icon:hover {
    transform: scale(1.2);
  }
  
  footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: #ccc;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
  }
  
  a {
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #90cdf4;
  }
  
  @media (max-width: 1024px) {
    header {
      padding: 1.5rem 2rem;
    }
    .header-nav {
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: block;
      position: absolute;
      top: 2rem;
      right: 2rem;
      z-index: 1001;
    }
  
    .header-nav {
      display: none;
      flex-direction: column;
      background: rgba(0, 0, 0, 0.8);
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      padding: 1rem 0;
      text-align: center;
      gap: 1rem;
      z-index: 1000;
    }
  
    .header-nav.show {
      display: flex;
    }
  
    header {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }
  
    .header-left, .logo-container {
      flex: none;
      width: 100%;
      display: flex;
      justify-content: center;
    }
  
    .about-content {
      flex-direction: column;
    }
  
    .about-photo, .about-text {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    body {
      font-size: 0.95rem;
    }
  
    header {
      padding: 1rem 1.5rem;
    }
  
    .header-nav a {
      padding: 0.4rem 0.7rem;
      font-size: 0.9rem;
    }
  
    .skills {
      gap: 1rem;
    }
  
    .skill-icon {
      width: 50px;
      height: 50px;
    }
  }
  