:root{
  --bg:#0b0f17;
  --card:#121826;
  --border:#1f2a44;
  --text:#e6ebf2;
  --muted:#9aa4b2;
  --accent:#4da3ff;
  --accent2:#22c55e;
  --shadow: 0 20px 70px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 15% -10%, #132a5a 0%, transparent 60%), var(--bg);
  color:var(--text);
  min-height:100vh;
}
.wrap{
  max-width: 520px;
  padding: 28px 18px;
  margin: 0 auto;
}
.brand{
  display:flex; align-items:center; gap:12px;
  margin-bottom: 16px;
}
.logo{
  width:46px; height:46px; border-radius:14px;
  background: linear-gradient(135deg, var(--accent), #7c7cff);
  display:grid; place-items:center;
  color:#061022; font-weight:900;
}
h1{margin:0; font-size:18px}
.muted{margin:4px 0 0; color:var(--muted); font-size:13px}
.small{font-size:12px}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)), var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.label{color:var(--muted); font-size:12px; margin-bottom:8px}
.amount{font-size:22px; font-weight:800}
.row{display:flex; align-items:center; justify-content:space-between; gap:10px}
.col.right{display:flex; gap:8px; align-items:center; justify-content:flex-end}

.pill{
  font-size:12px; color:#cfe1ff;
  border:1px solid var(--border);
  background:#0f1524;
  padding:6px 10px;
  border-radius:999px;
}
.sep{height:1px; background:var(--border); margin:14px 0}

.wallet{
  display:flex; gap:10px; align-items:center;
  background:#0f1524;
  border:1px dashed var(--border);
  border-radius: 14px;
  padding: 12px;
}
.wallet code{
  flex:1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  color:#cfe1ff;
}

.ghost{
  background:#101a33;
  border:1px solid var(--border);
  color:#cfe1ff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
}

.qrbox{
  margin-top:12px;
  background:#0f1524;
  border:1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  text-align:center;
}
.qrbox img{width:150px; height:150px}

.paybtn{
  display:block;
  margin-top: 14px;
  text-align:center;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight:900;
  color:#071021;
  text-decoration:none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.methods{
  display:flex; justify-content:center; gap:10px;
  margin-top: 10px;
  color:#cfd6e6;
  font-size:12px;
}
.methods span{
  border:1px solid var(--border);
  background:#0f1524;
  padding:8px 10px;
  border-radius: 12px;
}

.note{
  margin-top:12px;
  font-size:12px;
  color:var(--muted);
  text-align:center;
}

.status{
  margin-top:10px;
  text-align:center;
  font-size:12px;
  color:#cfd6e6;
}

input{
  width:100%;
  background:#0f1524;
  border:1px solid var(--border);
  color:var(--text);
  padding: 12px 14px;
  border-radius: 14px;
  outline:none;
  margin: 8px 0 14px;
}
button{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border:none;
  font-weight:900;
  cursor:pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#071021;
}
.out{margin-top:14px; color:#cfe1ff; font-size:13px}
.footer{margin-top:14px; text-align:center; color:var(--muted); font-size:12px}
