.custom-tooltip {
  position: absolute;
  z-index: 10000;
  max-width: min(280px, calc(100vw - 32px));
  padding: 10px 12px;
  border: 1px solid rgba(212, 175, 55, .45);
  border-radius: 8px;
  background: rgba(10, 8, 6, .96);
  color: #f8efd8;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
  font-size: .875rem;
  line-height: 1.55;
}

.ev-pie {
  width: min(300px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#d4af37 0 6.35%, #2ecc71 6.35% 13.75%, #e74c3c 13.75% 100%);
  box-shadow: inset 0 0 0 22px rgba(10, 8, 6, .86), 0 12px 28px rgba(0, 0, 0, .3);
}

.ev-legend {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
  color: var(--text-muted, #b9b09c);
  font-size: .9rem;
}

.ev-legend span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
}

.ev-banker { background: #d4af37; }
.ev-player { background: #2ecc71; }
.ev-tie { background: #e74c3c; }
