.epoch-note.covenant-note {
  margin: 2rem 0 1.5rem;
  padding: 1.2rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(62,229,143,0.25);
  border-left: 3px solid #3ee58f;
  background:
    radial-gradient(circle at top left, rgba(62,229,143,0.06), rgba(2,4,10,1));
  box-shadow: 0 0 16px rgba(0,0,0,0.5);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #f5f5f7;
}

.epoch-note.covenant-note h2 {
  font-size: 1.0rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #3ee58f;
}

.epoch-note.covenant-note ul {
  margin: 0.4rem 0 0.2rem 1.2rem;
  padding: 0;
  font-size: 0.9rem;
  color: #d4d8ff;
}

.epoch-note.covenant-note .note {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  opacity: 0.86;
  color: #9da3b5;
}

.covenant-badge, .epoch-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 0.6rem;
  padding: 0.2rem 0.8rem 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  background: rgba(62,229,143,0.09);
  border: 1px solid rgba(62,229,143,0.45);
  color: #c4fbe0;
  box-shadow: inset 0 0 6px rgba(62,229,143,0.35),
              0 0 8px rgba(62,229,143,0.22);
  gap: 0.35rem;
}

.covenant-badge .dot, .epoch-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ee58f;
  box-shadow: 0 0 7px #3ee58f;
  animation: covenant-pulse 2.4s infinite ease-in-out;
}

.covenant-badge[data-tooltip]:after,
.epoch-badge[data-tooltip]:after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 135%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: rgba(5,7,12,0.98);
  color: #9fffd0;
  border: 1px solid rgba(62,229,143,0.35);
  box-shadow: 0 0 10px rgba(62,229,143,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 40;
}

.covenant-badge:hover[data-tooltip]:after,
.epoch-badge:hover[data-tooltip]:after {
  opacity: 1;
}

@keyframes covenant-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 7px #3ee58f;
    opacity: 1;
  }
  50% {
    transform: scale(1.18);
    box-shadow: 0 0 16px #3ee58f;
    opacity: 0.9;
  }
}
