/* GLOW ROW & DOT (for lists/tables) */
.glow-row {
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  border-radius: 8px;
}

.glow-row:hover {
  background: rgba(56, 189, 248, 0.06);
  box-shadow:
    0 0 14px rgba(56,189,248,0.18),
    0 0 24px rgba(56,189,248,0.12);
  transform: translateX(4px);
}

.glow-dot {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.glow-dot:hover {
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.9), 0 0 24px rgba(56, 189, 248, 0.6);
  transform: scale(1.25);
}

/* ===========================
   LEGAL LINKS
========================== */
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-start;
}

.legal-pill {
  position: relative;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.45);
  background: radial-gradient(circle at 0% 0%, rgba(15,23,42,0.9), rgba(15,23,42,0.98));
  color: #9ca3af;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease;
}

.legal-pill::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 10% 0%, rgba(56,189,248,0.5), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.legal-pill:hover {
  color: #e0f2fe;
  border-color: rgba(56,189,248,0.75);
  box-shadow: 0 0 22px rgba(56,189,248,0.4);
  transform: translateY(-1px);
}

.legal-pill:hover::before {
  opacity: 1;
}

.legal-link {
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 0.9rem;
  transition: 0.25s ease;
  display: inline-block;
}

.legal-link:hover {
  color: white;
  border-color: #38bdf8;
  box-shadow: 0 0 18px rgba(56,189,248,0.5);
}
@media (min-width: 768px) {
  .legal-links {
    justify-content: flex-end;
  }
}

