body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 60px 20px;
  max-width: 900px;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  margin-bottom: 25px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.3rem;
  color: #ccc;
}

.socials {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.icon {
  width: 60px;
  height: 60px;
  transition: transform 0.3s;
}

.icon:hover {
  transform: scale(1.15);
}

.section {
  margin-top: 60px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

footer {
  margin-top: 60px;
  padding: 20px;
  font-size: 0.9rem;
  color: #999;
}