.lol-tooltip {
  display: none;
  position: fixed;
  z-index: 99999;
  background: #0d1117;
  border: 1px solid #1e2a3a;
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 180px;
  max-width: 260px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.7);
  pointer-events: none;
}

.lol-tooltip.is-visible {
  display: block;
}

.lol-tt-name {
  font-size: 14px;
  font-weight: 700;
  color: #e8e0f0;
  margin-bottom: 4px;
}

.lol-tt-cost {
  font-size: 12px;
  color: #f59e0b;
  margin-bottom: 8px;
}

.lol-tt-cost b {
  color: #fbbf24;
}

.lol-tt-stats {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 4px;
}

.lol-tt-stat {
  display: flex;
  gap: 6px;
  font-size: 12px;
}

.lol-tt-stat span:first-child {
  color: #7eb3ff;
  font-weight: 700;
  min-width: 32px;
}

.lol-tt-stat span:last-child {
  color: #aab8cc;
}

.lol-tt-desc {
  font-size: 12px;
  color: #8899aa;
  line-height: 1.5;
  margin-top: 6px;
}