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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
}

.avatar {
  display: block;
  margin: 0 auto 1.5rem;
  width: 150px;
  height: 150px;
  max-width: 150px;
  max-height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid #222;
  box-shadow: 0 0 30px rgba(100, 100, 255, 0.15), 0 0 60px rgba(100, 100, 255, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(100, 100, 255, 0.25), 0 0 80px rgba(100, 100, 255, 0.1);
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
}

.role {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.role a {
  color: #7eb0ff;
  text-decoration: none;
  transition: color 0.2s;
}

.role a:hover {
  color: #a8cbff;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.skills span {
  font-size: 0.8rem;
  color: #999;
  background: #151515;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  border: 1px solid #1e1e1e;
  transition: border-color 0.2s, color 0.2s;
}

.skills span:hover {
  border-color: #333;
  color: #ccc;
}

nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: #f5f5f5;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border: 1px solid #282828;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

nav a:hover {
  border-color: #7eb0ff;
  color: #7eb0ff;
  background: rgba(126, 176, 255, 0.05);
}
