:root{
  --bg:#0f1115; --panel:#171a21; --panel2:#1f2430; --text:#e8eaed;
  --muted:#93a0b4; --accent:#5b8cff; --accent2:#22c55e; --danger:#ef4444;
  --border:#2a2f3a;
}
*{box-sizing:border-box;}
body{
  margin:0; min-height:100vh; display:flex; align-items:center; justify-content:center;
  background:var(--bg); color:var(--text); font-family:-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  padding:24px;
}
.card{
  width:100%; max-width:420px; background:var(--panel); border:1px solid var(--border);
  border-radius:14px; padding:32px; box-shadow:0 20px 60px rgba(0,0,0,.4);
}
.card.wide{ max-width:640px; }
h1{ font-size:22px; margin:0 0 4px; }
p.sub{ color:var(--muted); margin:0 0 24px; font-size:14px; }
label{ display:block; font-size:13px; color:var(--muted); margin:14px 0 6px; }
input{
  width:100%; padding:11px 12px; background:var(--panel2); border:1px solid var(--border);
  border-radius:8px; color:var(--text); font-size:14px; outline:none;
}
input:focus{ border-color:var(--accent); }
button{
  width:100%; margin-top:22px; padding:12px; border:none; border-radius:8px;
  background:var(--accent); color:#fff; font-size:14px; font-weight:600; cursor:pointer;
}
button:hover{ filter:brightness(1.08); }
button.secondary{ background:var(--panel2); border:1px solid var(--border); }
button:disabled{ opacity:.5; cursor:not-allowed; }
.error{ background:rgba(239,68,68,.12); border:1px solid var(--danger); color:#fca5a5;
  padding:10px 12px; border-radius:8px; font-size:13px; margin-top:14px; display:none; }
.ok{ background:rgba(34,197,94,.12); border:1px solid var(--accent2); color:#86efac;
  padding:10px 12px; border-radius:8px; font-size:13px; margin-top:14px; display:none; }
a{ color:var(--accent); text-decoration:none; }
.footer-link{ text-align:center; margin-top:18px; font-size:13px; color:var(--muted); }
.row{ display:flex; gap:12px; align-items:center; justify-content:space-between; }
.balance{ font-size:32px; font-weight:700; }
.balance small{ font-size:14px; color:var(--muted); font-weight:400; }
table{ width:100%; border-collapse:collapse; margin-top:12px; font-size:13px; }
th,td{ text-align:left; padding:8px 6px; border-bottom:1px solid var(--border); }
th{ color:var(--muted); font-weight:500; }
.pix-box{ text-align:center; margin-top:16px; }
.pix-box img{ width:200px; height:200px; border-radius:8px; background:#fff; padding:8px; }
.copy-code{ display:flex; gap:8px; margin-top:12px; }
.copy-code input{ font-size:11px; }
.copy-code button{ width:auto; margin:0; padding:10px 14px; white-space:nowrap; }
.tag{ font-size:11px; padding:2px 8px; border-radius:999px; }
.tag.approved{ background:rgba(34,197,94,.15); color:#86efac; }
.tag.pending{ background:rgba(234,179,8,.15); color:#fde047; }
.tag.rejected{ background:rgba(239,68,68,.15); color:#fca5a5; }
