body {
  font-family: Arial, sans-serif;
  background: #121212;
  color: #fff;
  margin: 0;
  padding: 0;
}

nav {
  background: #1e1e1e;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00f2fe;
}

.container {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 0 15px rgba(0, 195, 255, 0.5);
  animation: popIn 1s ease;
}

.social-links {
  margin-top: 10px;
  font-size: 14px;
}

.social-links a {
  color: #00bcd4;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #fff;
}

.cta-linktree {
  margin-top: 25px;
}

.cta-linktree a {
  background: linear-gradient(to right, #4facfe, #00f2fe);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.cta-linktree a:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.description {
  margin-top: 30px;
  text-align: left;
  line-height: 1.8;
  font-size: 16px;
  animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
