/* navbar wallet pill */
.coin-pill { display: inline-flex; align-items: center; gap: 3px; text-decoration: none; vertical-align: middle; }
.coin-pill:hover { text-decoration: none; }
.coin-pill-img { width: 18px; height: 18px; object-fit: contain; vertical-align: middle; }
.coin-pill-n { font-weight: 600; }

/* wallet page */
.wallet-balances { display: flex; flex-wrap: wrap; gap: 14px; margin: 12px 0; }
.wallet-bal { display: flex; align-items: center; gap: 10px; border: 1px solid rgba(127,127,127,.25); border-radius: 8px; padding: 12px 16px; background: rgba(127,127,127,.06); }
.wallet-bal img { width: 40px; height: 40px; object-fit: contain; }
.wallet-bal .wb-amt { font-size: 22px; font-weight: 700; line-height: 1; }
.wallet-bal .wb-name { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; margin-top: 2px; }
.wallet-streak { margin: 10px 0 18px; }
.wb-plus { color: #4cc96e; font-weight: 600; }
.wb-minus { color: #d9534f; font-weight: 600; }

/* daily reward toast */
.coin-toast { position: fixed; right: 16px; bottom: 16px; z-index: 99999; background: #1e2330; color: #e8edf4; border: 1px solid #3a6ea5; border-radius: 10px; padding: 12px 16px; box-shadow: 0 8px 30px rgba(0,0,0,.5); opacity: 0; transform: translateY(12px); transition: opacity .3s, transform .3s; cursor: pointer; max-width: 320px; }
.coin-toast.show { opacity: 1; transform: none; }
.coin-toast-h { font-weight: 700; margin-bottom: 6px; }
.coin-toast-g { display: inline-flex; align-items: center; gap: 4px; margin-right: 10px; font-weight: 600; color: #ffd23f; }
.coin-toast-g img { width: 20px; height: 20px; object-fit: contain; }
.coin-toast-streak { margin-top: 6px; font-size: 13px; color: #ff8a3d; }
