body {
  background: #020617;
  color: #e5e7eb;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.account-card {
  width: 380px;
  background: #020617;
  border: 1px solid #1e293b;
  padding: 2rem;
  border-radius: 12px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  z-index: 10000;
}

.logo {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--purple);
}

.menu-btn {
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
}

.menu {
  position: fixed;
  top: 70px;
  right: 20px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  z-index: 9999;
}

.menu.hidden {
  display: none;
}

.menu a {
  padding: 1rem;
  font-weight: 600;
  color: var(--purple);
}

.menu a:hover {
  background: #eef2ff;
}

.hidden {
  display: none;
}

h1 {
  text-align: center;
}

.avatar-section {
  text-align: center;
  margin-bottom: 1rem;
}

.avatar-section img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.avatar-grid {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.avatar-option {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
}

.avatar-option.selected {
  border-color: #2563eb;
}

.field {
  margin-top: 1rem;
}

label {
  font-size: 0.8rem;
  color: #94a3b8;
}

.readonly {
  border: 1px solid #1e293b;
  padding: 0.5rem;
  border-radius: 6px;
}

select, button {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.5rem;
  border-radius: 6px;
  border: none;
}

button {
  background: #2563eb;
  color: white;
}

button:hover {
  background: #1d4ed8;
}

.actions {
  margin-top: 1.5rem;
}

.danger {
  background: #dc2626;
}

.danger:hover {
  background: #b91c1c;
}

