.gradient-button {
  background: linear-gradient(90deg, rgb(210, 54, 235), rgb(64, 80, 248));
  color: white;
  padding: 6px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: background 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
}

/* Hover effect (опціонально) */
.gradient-button:hover {
  opacity: 0.9;
}
