* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  height: 100vh;
  background: radial-gradient(circle at top, #2a003f, #0a0014);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Card container */
.card {
  width: 350px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(20, 0, 30, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(200, 0, 255, 0.2);
  text-align: center;
  animation: fadeIn 0.6s ease;
}

/* Title */
h1, h2 {
  margin-bottom: 15px;
}

/* Inputs */
input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: white;
  transition: 0.2s;
}

input::placeholder {
  color: rgba(255,255,255,0.6);
}

input:focus {
  background: rgba(255,255,255,0.2);
}

/* Button */
button {
  margin-top: 15px;
  padding: 12px;
  width: 100%;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #ff00cc, #7b00ff);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #c300ff;
}

/* Profile */
#profile h1 {
  font-size: 28px;
}

#bio {
  margin: 10px 0;
  opacity: 0.8;
}

/* Link button */
#link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff00cc, #7b00ff);
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

#link:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #c300ff;
}

/* Status text */
#status {
  margin-top: 10px;
  font-size: 14px;
  color: #ff7cff;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}