body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: linear-gradient(120deg, #1f1c2c, #928dab);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.intro-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 420px;
  animation: floatCard 6s ease-in-out infinite;
  color: #222;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #ccc;
}
.glow {
  box-shadow: 0 0 15px #aaa4, 0 0 25px #88f8ff44;
}

.highlight {
  color: #007acc;
}
.bio {
  font-size: 1rem;
  margin: 1rem 0;
  color: #333;
}

.links a {
  text-decoration: none;
}
.glow-button {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.6rem 1.2rem;
  color: #007acc;
  border: 1px solid #007acc;
  border-radius: 8px;
  background: #f9f9f9;
  transition: 0.3s ease;
  box-shadow: 0 0 8px #007acc44;
}
.glow-button:hover {
  background: #007acc;
  color: #fff;
  box-shadow: 0 0 20px #007acc, 0 0 40px #007accaa;
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
