* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  max-width: 768px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.photo {
  width: 150px;
  height: 150px;
  border-radius: 15%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.name {
  font-size: 4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skills {
  margin-bottom: 2.5rem;
}

.skills-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.skill {
  backdrop-filter: blur(5px);
  padding: 1rem;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.skill img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 2px solid transparent;
}

.contact-link:hover {
  color: #667eea;
  transform: translateY(-1px);
}

.icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  margin: 2rem auto;
  border-radius: 1px;
}

@media (max-width: 480px) {
  .container {
    padding: 2rem;
  }
  
  .photo {
    width: 100px;
    height: 100px;
  }
  
  .name {
    font-size: 2rem;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .skill {
    padding: 1.25rem;
  }
  
  .skill img {
    width: 45px;
    height: 45px;
  }
  
  .contact {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}