/* SPX contract-address widget — custom addition (outside the app's React tree).
   Styled to match the site's aesthetic: Space Mono, hard black shadows, lime/magenta. */

#spx-contract-widget.scw {
  --scw-lime: #e5ff1a;
  --scw-magenta: #ff1a66;
  --scw-black: #0a0a0a;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100010;        /* above boot screen (100000) & disclaimer (80000) so it is always clickable */
  font-family: "Space Mono", monospace;
  -webkit-user-select: text;
  user-select: text;
}

/* Collapsed pill */
#spx-contract-widget .scw-toggle {
  font-family: "Space Mono", monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #0a0a0a;
  background: var(--scw-lime);
  border: 2px solid #0a0a0a;
  box-shadow: 4px 4px 0 0 #0a0a0a;
  padding: 8px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
#spx-contract-widget .scw-toggle:hover { background: var(--scw-magenta); color: #fff; transform: translate(-1px,-1px); box-shadow: 5px 5px 0 0 #0a0a0a; }
#spx-contract-widget .scw-toggle:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 0 #0a0a0a; }
#spx-contract-widget .scw-toggle .scw-caret { font-size: 10px; }

/* Expanded card */
#spx-contract-widget .scw-card {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: 330px;
  max-width: calc(100vw - 36px);
  background: #ffffff;
  border: 3px solid #0a0a0a;
  box-shadow: 8px 8px 0 0 #0a0a0a, 12px 12px 0 0 var(--scw-magenta);
  padding: 14px 16px;
}
#spx-contract-widget .scw-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--scw-magenta);
  text-transform: uppercase;
  margin-bottom: 8px;
}
#spx-contract-widget .scw-addr {
  display: block;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: rgba(10,10,10,0.85);
  background: #fbfaf7;
  border: 2px solid #0a0a0a;
  padding: 9px 10px;
  word-break: break-all;
  -webkit-user-select: text;
  user-select: text;
}
#spx-contract-widget .scw-copy {
  margin-top: 10px;
  width: 100%;
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #0a0a0a;
  background: var(--scw-lime);
  border: 2px solid #0a0a0a;
  box-shadow: 3px 3px 0 0 #0a0a0a;
  padding: 8px 12px;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.12s ease, background 0.12s ease;
}
#spx-contract-widget .scw-copy:hover { background: var(--scw-lime); transform: translate(-1px,-1px); box-shadow: 4px 4px 0 0 #0a0a0a; }
#spx-contract-widget .scw-copy:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 0 #0a0a0a; }
#spx-contract-widget .scw-copy.scw-copied { background: var(--scw-magenta); color: #fff; }
#spx-contract-widget .scw-copy:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #e6e6e6;
  box-shadow: none;
}
#spx-contract-widget .scw-copy:disabled:hover { background: #e6e6e6; transform: none; }
#spx-contract-widget .scw-hint {
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: rgba(10,10,10,0.55);
  text-transform: uppercase;
  text-align: center;
}
