/* home.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg,#0f172a,#0b1220);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6eef8;
}
.dashboard .card {
  background: rgba(255,255,255,0.06);
  padding: 40px;
  border-radius: 18px;
  width: 600px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.profile-area { margin-bottom: 18px; }
.profile-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(14,165,233,0.9);
  box-shadow: 0 10px 30px rgba(2,6,23,0.6);
}
.placeholder {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0ea5e9,#06b6d4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #06202a;
  font-size: 20px;
}
.name { margin: 8px 0 4px; font-size: 24px; color: #fff; }
.email { margin: 0 0 16px; color: #cfeefe; font-size: 16px; }
.btn { background: linear-gradient(135deg,#06b6d4,#0ea5e9); color: #002131; padding: 10px 18px; border-radius: 10px; text-decoration: none; font-weight: 700; }
