* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #502c4e, #d534db);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 400px;
  width: 100%;
}

input {
  padding: 10px;
  width: 70%;
  border-radius: 8px;
  border: none;
  margin-bottom: 10px;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background-color: #ffffff;
  color: #3498db;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #ff00f2;
  color: white;
}

.card {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-in-out;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.profile-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid rgb(255, 255, 255);
  margin-bottom: 10px;
}

.user-info h2 {
  margin: 10px 0 5px;
}

.user-info p {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.stats div {
  text-align: center;
}

.stats span {
  display: block;
  font-size: 12px;
  opacity: 0.7;
}

a {
  text-decoration: none;
  background: white;
  color: #3498db;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 500px) {
  .stats {
    flex-direction: column;
    gap: 10px;
  }
}
