body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.profile-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.profile-card {
  width: 400px;
  background: rgba(0, 255, 200, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0,255,200,0.3);
  border-radius: 20px;
  padding: 30px;
  color: white;
  box-shadow: 0 0 30px rgba(0,255,200,0.2);
}

.profile-header {
  text-align: center;
}

.profile-avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(45deg,#00ffc8,#0077ff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 36px;
  font-weight: bold;
}

.profile-header h2 {
  margin: 15px 0 5px;
}

.profile-header p {
  opacity: 0.7;
}

.profile-details {
  margin-top: 25px;
}

.detail-box {
  background: rgba(255,255,255,0.05);
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.detail-box span {
  font-size: 12px;
  opacity: 0.6;
}

.detail-box p {
  margin: 5px 0 0;
}

.profile-actions {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

button {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: linear-gradient(45deg,#00ffc8,#0077ff);
  color: black;
  font-weight: bold;
}

.logout {
  background: crimson;
  color: white;
}