
/* Tokens */
:root{
  --gc-bg: #0a0d12;
  --gc-panel: #111521;
  --gc-elev: #171c2b;
  --gc-text: #e8eefc;
  --gc-muted:#9fb0d0;
  --gc-accent:#4ea3ff;
  --gc-good:#18d3a1;
  --gc-border:1px solid rgba(255,255,255,.08);

  --gc-radius:12px;
  --gc-shadow:0 6px 18px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
  --gc-gap:16px;
}

/* Scoped to body.gc so nothing else changes */
body.gc{
  margin:0;
  background:
    radial-gradient(1100px 600px at 75% -10%, rgba(78,163,255,.16), transparent 60%),
    radial-gradient(900px 600px at -10% 80%, rgba(24,211,161,.12), transparent 60%),
    var(--gc-bg);
  color:var(--gc-text);
  font: 15px/1.45 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}

/* Wrap/panel */
body.gc .wrap{max-width:760px; margin:48px auto; padding:0 20px;}
body.gc header{
  background:linear-gradient(180deg,#151a2b,#0f1322);
  border:var(--gc-border); border-radius:14px; box-shadow:var(--gc-shadow);
  padding:22px 22px 18px;
}
body.gc header h1{margin:0; font-size:24px; letter-spacing:.3px;}
body.gc header p{margin:8px 0 0; color:var(--gc-muted); font-size:14px;}

/* Generic card layout matching your markup */
body.gc .card{
  margin-top:18px; border-radius:14px; overflow:hidden;
  background:var(--gc-panel); border:var(--gc-border); box-shadow:var(--gc-shadow);
}
body.gc .label{
  background:transparent; color:var(--gc-muted); font-weight:700;
  padding:14px 16px; border-bottom:var(--gc-border);
}
body.gc .value{
  padding:16px; background:var(--gc-elev); border-bottom:var(--gc-border);
  display:flex; align-items:center;
}
body.gc .value:last-of-type{border-bottom:none;}

body.gc .address-box{
  background:#0f1423; border:var(--gc-border); color:var(--gc-text);
  border-radius:10px; padding:10px 12px; font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space:nowrap; overflow:auto;
}
body.gc code#balance{
  font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size:14px;
}

/* “source” line */
body.gc .source{color:var(--gc-muted); padding:10px 16px 18px; font-size:12px}

/* Directions box */
body.gc .directions{
  margin-top:18px; background:var(--gc-panel); border:var(--gc-border);
  border-left:3px solid var(--gc-accent); border-radius:12px; padding:16px; box-shadow:var(--gc-shadow);
}

/* Footer */
body.gc .footer{margin:26px 0 10px; text-align:center;}
body.gc .footer a{color:var(--gc-accent); text-decoration:none;}
body.gc .footer a:hover{text-decoration:underline;}
