:root{
  --bg:#060a12;
  --card:#0b101a;
  --line:rgba(255,255,255,.12);
  --muted:rgba(255,255,255,.62);
  --txt:rgba(255,255,255,.92);
  --accent:#00a3ff;
  --accent2:#0066ff;
  --danger:#ff4d6d;
  --ok:#38e07b;
}

*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
  background:radial-gradient(1200px 600px at 70% 10%, rgba(0,163,255,.16), transparent 55%),
             radial-gradient(900px 500px at 20% 80%, rgba(0,102,255,.12), transparent 60%),
             #050810;
  color:var(--txt);
  overflow-x:hidden;
}

#bg{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
}

.wrap{
  position:relative;
  z-index:1;
  max-width:860px;
  margin:0 auto;
  padding:26px 16px 30px;
}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow:0 10px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
}

.head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.title{
  font-size:20px;
  font-weight:900;
  letter-spacing:.3px;
}

.sub{
  margin-top:4px;
  font-size:12px;
  color:var(--muted);
}

.user{
  text-align:right;
  font-size:12px;
  color:var(--muted);
  white-space:pre-line;
}

.section{ margin-top:16px }
.hidden{ display:none !important }

.label{
  font-weight:800;
  margin-bottom:8px;
  color:rgba(255,255,255,.86);
  letter-spacing:.2px;
}

.row{
  display:flex;
  gap:10px;
  align-items:center;
}

.input, .textarea, select{
  width:100%;
  background:rgba(0,0,0,.28);
  border:1px solid var(--line);
  border-radius:12px;
  color:var(--txt);
  padding:10px 12px;
  outline:none;
  transition:border-color .16s, box-shadow .16s, transform .12s;
}
.input:focus, .textarea:focus, select:focus{
  border-color:rgba(0,163,255,.55);
  box-shadow:0 0 0 3px rgba(0,163,255,.12);
}

.textarea{
  min-height:110px;
  resize:vertical;
}

.input.small{
  max-width:120px;
}

.btn{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--txt);
  padding:10px 14px;
  border-radius:12px;
  font-weight:800;
  cursor:pointer;
  transition:transform .12s, box-shadow .12s, border-color .12s, filter .12s;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
}
.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(0,163,255,.45);
  box-shadow:0 0 14px rgba(0,163,255,.18);
}
.btn:active{ transform:scale(.98); filter:brightness(.9) }

.btn.primary{
  border:0;
  background:linear-gradient(90deg,var(--accent2),var(--accent));
  box-shadow:0 0 14px rgba(0,102,255,.28);
}
.btn.primary:hover{
  box-shadow:0 0 22px rgba(0,102,255,.45);
}

.btn.ghost{
  background:rgba(255,255,255,.03);
}

.creator{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.avatar{
  width:56px;
  height:56px;
  border-radius:16px;
  object-fit:cover;
  border:1px solid var(--line);
  background:rgba(0,0,0,.25);
}
.cMeta{ flex:1; min-width:0 }
.cName{ font-weight:900; font-size:16px }
.cBio{
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
  white-space:pre-wrap;
  word-break:break-word;
}
.cBtns{ margin-top:10px; display:flex; gap:10px; flex-wrap:wrap }

.divider{
  height:1px;
  background:var(--line);
  margin:16px 0;
}

.moneyBox{
  margin-top:10px;
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  background:rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13px;
}
.mRow{
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:rgba(255,255,255,.82);
}
.mRow span{ color:var(--accent) }
.mRow.strong{
  font-weight:900;
}
.mRow.strong span{ color:#fff }

.fields{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.fRow{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.fLabel{
  font-size:13px;
  font-weight:800;
  color:rgba(255,255,255,.84);
}
.fLabel .req{
  color:var(--danger);
  font-weight:900;
  margin-left:6px;
}

.hint{
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
  line-height:1.5;
  white-space:pre-line;
}

.msg{
  margin-top:12px;
  font-size:13px;
  color:var(--muted);
  min-height:18px;
  white-space:pre-line;
}

.actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  margin-top:14px;
  flex-wrap:wrap;
}

.foot{
  margin-top:10px;
  text-align:center;
  color:rgba(255,255,255,.45);
  font-size:12px;
}

@media (max-width:640px){
  .head{ flex-direction:column; align-items:flex-start }
  .user{ text-align:left }
  .row{ flex-direction:column; align-items:stretch }
  .input.small{ max-width:none }
}
