html.page, body.page { overflow: auto; height: auto; min-height: 100%; }
body.page { display: flex; flex-direction: column; min-height: 100vh; }
.acct { flex: 1; width: 100%; max-width: 440px; margin: 0 auto; padding: 32px 16px; }
.card { background: var(--panel); border: 1px solid var(--panel-line); border-radius: var(--radius); padding: 20px; margin-bottom: 14px; }
.card h1 { font-size: 22px; color: #fff; margin-bottom: 4px; }
.card h2 { font-size: 16px; color: #fff; margin: 0 0 8px; }
.card p { color: var(--text-muted); margin: 0 0 14px; font-size: 13px; }
.field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.field span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.field input { background: rgba(0, 0, 0, 0.4); border: 1px solid var(--panel-line); border-radius: var(--radius); color: var(--text); font: inherit; padding: 9px 10px; }
.field input:focus { outline: none; border-color: var(--blue); }
.row { display: flex; gap: 10px; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-top: 6px; }
.row a { color: var(--text-muted); font-size: 12px; }
.btn { background: var(--blue); color: #061020; border-color: transparent; font-weight: 700; padding: 9px 18px; }
.btn:hover { background: #7dbcff; }
.btn.ghost { background: none; color: var(--text); border-color: var(--panel-line); }
.btn.danger { background: none; color: var(--red); border-color: var(--red); }
.btn.wide { width: 100%; display: block; text-align: center; text-decoration: none; margin-top: 12px; }
.notice { padding: 8px 10px; border-radius: var(--radius); font-size: 13px; margin: 0 0 12px; }
.notice.bad { background: rgba(255, 95, 109, 0.12); color: var(--red); border: 1px solid rgba(255, 95, 109, 0.4); }
.notice.good { background: rgba(74, 222, 128, 0.12); color: var(--green); border: 1px solid rgba(74, 222, 128, 0.4); }
.divider { text-align: center; color: var(--text-muted); font-size: 11px; margin: 14px 0 4px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.stats div { background: rgba(0, 0, 0, 0.3); border-radius: var(--radius); padding: 8px; text-align: center; }
.stats b { display: block; font-size: 20px; color: #fff; }
.stats i { font-style: normal; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
table.hist { width: 100%; border-collapse: collapse; font-size: 12px; }
table.hist td, table.hist th { padding: 5px 6px; border-bottom: 1px solid var(--panel-line); text-align: left; }
table.hist th { color: var(--text-muted); font-weight: 500; text-transform: uppercase; font-size: 10px; letter-spacing: 0.08em; }
table.hist .win { color: var(--green); }
table.hist .loss { color: var(--red); }
