/* MindsetAlchemy — initiatic rank badge (no email in nav) */
.ma-rank-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 99, 0.25);
  background: rgba(18, 12, 35, 0.75);
  color: #d4af63;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.68rem;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
  user-select: none;
  flex-shrink: 0;
}

.ma-rank-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(212, 175, 99, 0.28);
  border-color: rgba(212, 175, 99, 0.42);
}

.ma-rank-main {
  display: block;
  font-weight: 600;
  letter-spacing: 1px;
}

.ma-rank-level {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: rgba(212, 175, 99, 0.72);
  font-weight: 600;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .ma-rank-badge {
    padding: 5px 10px;
    font-size: 0.62rem;
  }

  .ma-rank-level {
    font-size: 0.5rem;
  }
}
