:root { --bg: #05070a; --card: #0f172a; --accent: #38bdf8; --success: #22c55e; --text: #f8fafc; }
body { background: var(--bg); color: var(--text); font-family: sans-serif; padding: 20px; }
.app-container { max-width: 800px; margin: auto; }
.header { display: flex; justify-content: space-between; align-items: center; }
#statusDot { height: 10px; width: 10px; border-radius: 50%; display: inline-block; background: #334155; margin-right: 5px; }
.main-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 20px; margin: 20px 0; }
.card { background: var(--card); padding: 25px; border-radius: 12px; border: 1px solid #1e293b; }
.balance { font-size: 3rem; font-weight: bold; color: var(--success); margin: 15px 0; }
.active { color: var(--success); font-weight: bold; }
input, select, button { width: 100%; padding: 12px; margin: 10px 0; border-radius: 6px; border: 1px solid #334155; background: #020617; color: white; }
button { background: var(--accent); color: #000; font-weight: bold; border: none; cursor: pointer; }
.terminal-box { background: #000; border-radius: 8px; border: 1px solid #334155; }
.terminal-header { background: #1e293b; padding: 10px; font-size: 0.8rem; }
.logs-body { height: 180px; padding: 15px; font-family: monospace; overflow-y: auto; line-height: 1.5; }
