/* Base button upgrade */
.btn {
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 18px;
  transition: all 0.2s ease;
}

/* goto dashboard button (when logged in) */
.btn-primary-custom {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Beta badge under title */
.beta-badge {
  margin-top: 8px;

  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  padding: 4px 10px;
  border-radius: 6px;

  background: rgba(147, 51, 234, 0.15);
  color: #a855f7;
}