<!-- start Simple Custom CSS and JS -->
<style type="text/css">
/* ═══════════════════════════════════════════════════════════════
   9IO WHALE REPORT V2 — CSS
   Brand book: #ffffff primary, #aaaaaa secondary, #888888 meta
   Accents: #00ff88 green, #00d4ff blue, #fbbf24 amber, #ff4444 red
   Borders: #1a2030
   Min font: 13px, most 16px, key numbers 18-64px bold
   ═══════════════════════════════════════════════════════════════ */

#wrc-v2 {
  background: #0a0e1a;
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #ffffff;
  border: 1px solid #1a2030;
  box-sizing: border-box;
}
#wrc-v2 * { box-sizing: border-box; }
#wrc-v2 a { text-decoration: none; }

/* ── HEADER ── */
.wr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.wr-title {
  font-size: 15px;
  font-weight: 700;
  color: #00d4ff;
  letter-spacing: 1px;
}
.wr-time {
  font-size: 13px;
  color: #888888;
  background: #161b22;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid #1a2030;
}

/* ── TOP CARDS ── */
.wr-top-cards {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.wr-card-green {
  flex: 1;
  background: #0a1f10;
  border: 1px solid rgba(0,255,136,0.3);
  border-top: 3px solid #00ff88;
  border-radius: 14px;
  padding: 18px 20px;
}
.wr-card-blue {
  flex: 1;
  background: #0a1020;
  border: 1px solid rgba(0,212,255,0.3);
  border-top: 3px solid #00d4ff;
  border-radius: 14px;
  padding: 18px 20px;
}
.wr-card-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.wr-card-label.green { color: #00ff88; }
.wr-card-label.blue  { color: #00d4ff; }
.wr-card-sym {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 3px;
}
.wr-card-name {
  font-size: 15px;
  color: #aaaaaa;
  margin-bottom: 12px;
}
.wr-card-big-green {
  font-size: 56px;
  font-weight: 700;
  color: #00ff88;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 5px;
}
.wr-card-big-blue {
  font-size: 56px;
  font-weight: 700;
  color: #00d4ff;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 5px;
}
.wr-card-since {
  font-size: 14px;
  color: #888888;
  margin-bottom: 12px;
}
.wr-card-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.wr-badge-score-green {
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  background: rgba(0,255,136,0.15);
  border: 1px solid rgba(0,255,136,0.4);
  color: #00ff88;
}
.wr-badge-score-blue {
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.4);
  color: #00d4ff;
}
.wr-badge-new-green {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  background: #00ff88;
  color: #000000;
  letter-spacing: 1px;
}
.wr-badge-new-blue {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  background: #00d4ff;
  color: #000000;
  letter-spacing: 1px;
}
.wr-card-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 10px;
  margin-top: 4px;
}
.wr-card-stat {
  flex: 1;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.wr-card-stat:first-child { padding-left: 0; }
.wr-card-stat:last-child { border-right: none; }
.wr-card-stat-label {
  font-size: 12px;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.wr-card-stat-val {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
.wr-card-stat-val.green { color: #00ff88; }
.wr-card-stat-val.blue  { color: #00d4ff; }
.wr-card-stat-val.amber { color: #fbbf24; }

/* Score bar */
.wr-score-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.wr-score-bar-track {
  flex: 1;
  height: 6px;
  background: #1a1a2e;
  border-radius: 3px;
  overflow: hidden;
}
.wr-score-bar-fill {
  height: 100%;
  background: #00d4ff;
  border-radius: 3px;
}
.wr-score-bar-label {
  font-size: 14px;
  color: #00d4ff;
  font-weight: 700;
}

/* Social links */
.wr-social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.wr-social-chart {
  font-size: 13px;
  color: #00d4ff;
  padding: 5px 12px;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 20px;
  font-weight: 600;
}
.wr-social-twitter {
  font-size: 13px;
  color: #1da1f2;
  padding: 5px 12px;
  border: 1px solid rgba(29,161,242,0.3);
  border-radius: 20px;
  font-weight: 600;
}
.wr-social-telegram {
  font-size: 13px;
  color: #0088cc;
  padding: 5px 12px;
  border: 1px solid rgba(0,136,204,0.3);
  border-radius: 20px;
  font-weight: 600;
}

/* ── SENTIMENT ── */
.wr-sentiment {
  background: #161b22;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #1a2030;
}
.wr-sentiment-label {
  font-size: 22px;
  font-weight: 700;
  min-width: 110px;
}
.wr-sentiment-label.bullish { color: #00ff88; }
.wr-sentiment-label.bearish { color: #ff4444; }
.wr-sentiment-label.neutral { color: #ffaa00; }
.wr-sentiment-track {
  flex: 1;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  background: #1a2030;
  display: flex;
}
.wr-sentiment-buy  { background: #00cc6a; }
.wr-sentiment-sell { background: #ff4444; }
.wr-sentiment-ratio {
  font-size: 15px;
  color: #aaaaaa;
  min-width: 80px;
  text-align: center;
}
.wr-sentiment-counts {
  font-size: 15px;
  color: #888888;
  white-space: nowrap;
}

/* ── TOKEN ICON ── */
.wr-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.wr-icon img { width: 100%; height: 100%; object-fit: cover; }
.wr-icon.green { background: #0f3320; border: 2px solid #00ff88; color: #00ff88; }
.wr-icon.blue  { background: #0a1a2e; border: 2px solid #00d4ff; color: #00d4ff; }
.wr-icon.amber { background: #2a1a00; border: 2px solid #fbbf24; color: #fbbf24; }

/* ── PANEL (Top Gainers / Top Gems) ── */
.wr-panel {
  flex: 1;
  background: #161b22;
  border-radius: 12px;
  border: 1px solid #1a2030;
  overflow: hidden;
}
.wr-panel-header {
  padding: 11px 16px;
  border-bottom: 1px solid #1a2030;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wr-panel-title {
  font-size: 13px;
  font-weight: 700;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wr-panel-sub {
  font-size: 13px;
  color: #555555;
}
.wr-rank-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid #1a2030;
}
.wr-rank-row:last-child { border-bottom: none; }
.wr-rank-info { flex: 1; min-width: 0; }
.wr-rank-sym {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  display: block;
}
.wr-rank-sym:hover { color: #00d4ff; }
.wr-rank-name {
  font-size: 14px;
  color: #aaaaaa;
}
.wr-rank-meta {
  font-size: 13px;
  color: #888888;
}
.wr-rank-right { text-align: right; flex-shrink: 0; }
.wr-rank-pct-green {
  font-size: 17px;
  font-weight: 700;
  color: #00ff88;
}
.wr-rank-pct-blue {
  font-size: 17px;
  font-weight: 700;
  color: #00d4ff;
}
.wr-rank-liq {
  font-size: 14px;
  color: #aaaaaa;
}
.wr-rank-num {
  font-size: 13px;
  color: #888888;
}

/* ── HIDDEN GEMS ── */
.wr-hidden {
  background: #161b22;
  border-radius: 12px;
  border: 1px solid rgba(251,191,36,0.2);
  border-left: 3px solid #fbbf24;
  margin-bottom: 14px;
  overflow: hidden;
}
.wr-hidden-header {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(251,191,36,0.1);
}
.wr-hidden-title {
  font-size: 13px;
  font-weight: 700;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wr-hidden-sub {
  font-size: 13px;
  color: #888888;
}
.wr-hidden-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.wr-hidden-item {
  padding: 14px 16px;
  border-right: 1px solid rgba(251,191,36,0.1);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.wr-hidden-item:last-child { border-right: none; }
.wr-hidden-sym {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
.wr-hidden-sym:hover { color: #fbbf24; }
.wr-hidden-wallets {
  font-size: 14px;
  font-weight: 700;
  color: #fbbf24;
}
.wr-hidden-tracked {
  font-size: 13px;
  color: #888888;
}
.wr-hidden-chart {
  font-size: 13px;
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
}

/* ── WHALE MOVES ── */
.wr-moves-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.wr-moves-main {
  flex: 1.6;
  background: #161b22;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid #1a2030;
}
.wr-moves-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wr-section-label {
  font-size: 13px;
  font-weight: 700;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.wr-moves-cols {
  display: flex;
  gap: 14px;
}
.wr-acc-col {
  flex: 1;
  border-left: 3px solid #00ff88;
  padding-left: 12px;
}
.wr-dump-col {
  flex: 1;
  border-left: 3px solid #ff4444;
  padding-left: 12px;
}
.wr-col-label {
  font-size: 13px;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1a2030;
}
.wr-token { margin-bottom: 14px; }
.wr-token:last-child { margin-bottom: 0; }
.wr-token-sym-green {
  font-size: 17px;
  font-weight: 700;
  color: #00ff88;
  display: block;
}
.wr-token-sym-red {
  font-size: 17px;
  font-weight: 700;
  color: #ff4444;
  display: block;
}
.wr-token-meta {
  font-size: 14px;
  color: #aaaaaa;
  margin-top: 2px;
}
.wr-token-val {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  margin-top: 2px;
}
.wr-wallet-link-green {
  font-family: monospace;
  font-size: 13px;
  color: #00d4ff;
  display: block;
}
.wr-wallet-link-red {
  font-family: monospace;
  font-size: 13px;
  color: #ff6b6b;
  display: block;
}

/* ── SMART MONEY FLOW ── */
.wr-flow {
  background: #161b22;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid #1a2030;
}
.wr-flow-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.wr-flow-val-green {
  font-size: 28px;
  font-weight: 700;
  color: #00ff88;
  text-align: center;
}
.wr-flow-val-red {
  font-size: 28px;
  font-weight: 700;
  color: #ff4444;
  text-align: center;
}
.wr-flow-label {
  font-size: 13px;
  color: #888888;
  text-transform: uppercase;
  margin-top: 3px;
  text-align: center;
}
.wr-flow-vs {
  font-size: 15px;
  color: #444444;
}

/* ── NEW GEMS ── */
.wr-newgems {
  background: #161b22;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid #1a2030;
  flex: 1;
}
.wr-gem-tag {
  font-size: 14px;
  padding: 5px 13px;
  border-radius: 20px;
  font-weight: 600;
  background: rgba(0,255,136,0.13);
  border: 1px solid rgba(0,255,136,0.27);
  color: #00ff88;
  display: inline-block;
  margin: 3px;
}

/* ── STATS FOOTER ── */
.wr-stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #161b22;
  border-radius: 12px;
  border: 1px solid #1a2030;
}
.wr-stats-group { display: flex; gap: 28px; }
.wr-stat-item { text-align: center; }
.wr-stat-val {
  font-size: 22px;
  font-weight: 700;
  color: #00d4ff;
}
.wr-stat-label {
  font-size: 13px;
  font-weight: 700;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.wr-actions { display: flex; gap: 8px; }
.wr-btn-primary {
  background: #00d4ff;
  color: #000000;
  padding: 9px 16px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.wr-btn-secondary {
  background: #1a2030;
  color: #00d4ff;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #1a2030;
  cursor: pointer;
}
.wr-footer-text {
  text-align: center;
  margin-top: 12px;
  color: #888888;
  font-size: 13px;
}</style>
<!-- end Simple Custom CSS and JS -->
