* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Tahoma, Arial, sans-serif;
  background: #150C26;
  color: #F3ECDD;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 24px 16px;
}
.box {
  width: 100%;
  max-width: 420px;
  background: #241539;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 14px;
  padding: 24px;
  margin-top: 40px;
  height: fit-content;
}
.wide { max-width: 800px; }
h1 { font-size: 18px; margin-bottom: 18px; text-align: center; }
label { display: block; font-size: 13px; margin: 10px 0 4px; color: #C9BEDD; }
input, textarea, select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 9px;
  border: 1px solid rgba(201,162,39,0.3);
  background: rgba(255,255,255,0.05);
  color: #F3ECDD;
  font-family: inherit;
  font-size: 14px;
}
textarea { resize: vertical; min-height: 70px; }
button, .btn {
  display: inline-block;
  margin-top: 16px;
  width: 100%;
  padding: 11px;
  border: none;
  border-radius: 9px;
  background: linear-gradient(90deg, #8A6E14, #C9A227, #F1D97A, #C9A227, #8A6E14);
  color: #241539;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.err { color: #F4A0A0; font-size: 13px; margin-top: 10px; text-align: center; }
.ok { color: #9BE29B; font-size: 13px; margin-top: 10px; text-align: center; }
.topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.topbar a { color: #C9A227; text-decoration: none; font-size: 13px; }
table { width: 100%; border-collapse: collapse; margin-top: 12px; }
th, td { padding: 10px; text-align: right; font-size: 13px; border-bottom: 1px solid rgba(201,162,39,0.15); }
th { color: #F1D97A; }
.link-box { background: rgba(201,162,39,0.1); border: 1px dashed rgba(201,162,39,0.4); border-radius: 8px; padding: 10px; font-size: 13px; text-align: center; margin-top: 10px; word-break: break-all; }
.empty { text-align: center; color: #A99BC4; padding: 20px; font-size: 13px; }
.avatar-preview { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto 10px; border: 2px solid rgba(201,162,39,0.4); }
