* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #0f3d1f, #020703);
  color: #d9ffe6;
}

.card {
  max-width: 360px;
  width: 90%;
  background: rgba(6, 30, 15, 0.95);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 255, 120, 0.25),
              0 0 50px rgba(0, 255, 120, 0.15);
}

.pfp {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #00ff66;
  box-shadow: 0 0 20px #00ff66;
}

.card h1 {
  font-size: 28px;
  color: #00ff66;
  text-shadow: 0 0 10px rgba(0, 255, 100, 0.5);
  margin-bottom: 5px;
}

.bio {
  font-size: 14px;
  color: #9cffc2;
  margin-bottom: 25px;
}

.btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  background: linear-gradient(135deg, #00ff66, #00cc55);
  color: #003b1a;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.15s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ff66;
}

/* Views */
.views {
  margin-top: 20px;
  font-size: 14px;
  color: #9cffc2;
}
