/* Milestone Rewards Block - Scoped CSS */
.mrb-block {
  margin: 0 auto 1.5rem auto;
  width: 100%;
  max-width: 32rem;
  border-radius: 12px;
  border: 2px solid rgba(253, 224, 71, 1);
  background: rgba(255,255,255,0.9);
  padding: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,ui-sans-serif,system-ui,"Apple Color Emoji","Segoe UI Emoji";
}
.mrb-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px;gap:12px}
.mrb-title{font-size:14px;font-weight:700;color:#6b21a8}
.mrb-figure{font-size:14px;font-weight:800;color:#ca8a04;white-space:nowrap}
.mrb-bar-outer{width:100%;background:#e5e7eb;border-radius:9999px;height:16px;overflow:hidden}
.mrb-bar-inner{height:16px;border-radius:9999px;background-image:linear-gradient(to right,#facc15,#f97316);transition:width .5s ease-out}
.mrb-note{margin-top:8px;font-size:12px;color:#6b7280}

/* Live Transactions Block */
.ltb-card{background:#fff;border-radius:12px;overflow:hidden;width:100%;max-width:32rem;margin:0 auto 2rem auto;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,ui-sans-serif,system-ui}
.ltb-header{background-image:linear-gradient(to right,#6b21a8,#ec4899);color:#fff;padding:16px;font-weight:800;font-size:18px;display:flex;gap:8px;align-items:center}
.ltb-icon{display:inline-block}
.ltb-list{border-top:1px solid rgba(147,51,234,.1);max-height:12rem;overflow-y:auto}
.ltb-row{display:flex;align-items:center;justify-content:space-between;padding:12px;font-size:14px;background:#faf5ff;transition:background-color .15s ease;border-bottom:1px solid rgba(147,51,234,.1)}
.ltb-row:hover{background:#fffbeb}
.ltb-addr{color:#374151;font-weight:600}
.ltb-amt{color:#16a34a;font-weight:800}
/* Appear animation */
@keyframes ltbFadeIn{from{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}
.ltb-appear{animation:ltbFadeIn .25s ease}
/* Subtle pulse on new rows */
@keyframes pulseOnce{0%{box-shadow:0 0 0 0 rgba(34,197,94,.4)}100%{box-shadow:0 0 0 12px rgba(34,197,94,0)}}
.pulse-once{animation:pulseOnce .6s ease}

/* Stats Overview Block */
.sob-card{background:#fff;border-radius:12px;padding:24px;margin:0 auto 2rem auto;width:100%;max-width:32rem;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,ui-sans-serif,system-ui}
.sob-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;text-align:center}
.sob-cell{background:#fffbeb;padding:12px;border-radius:10px}
.sob-icon{color:#7e22ce;margin-bottom:4px}
.sob-label{font-size:12px;color:#374151}
@media (min-width:640px){.sob-label{font-size:18px}}
.sob-value{font-size:20px;font-weight:800;color:#7e22ce}
