/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

/* Reset & body styling */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #89f7fe, #66a6ff);
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Main container */
.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  max-width: 380px;
  width: 90%;
  animation: fadeIn 1.5s ease-in;
}

/* Profile image */
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

/* Name and bio */
h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.bio {
  font-size: 1rem;
  color: #eee;
  margin-bottom: 1.5rem;
}

/* Links */
.links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.links a {
  text-decoration: none;
  background: #fff;
  color: #333;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.links a:hover {
  transform: translateY(-3px);
  background: #333;
  color: #fff;
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #ddd;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
