/* Gradient Button #1 */
.gradient-button {
  position: relative;
  background: linear-gradient(90deg, rgb(93, 168, 255), rgb(96, 93, 255) 50%, rgb(173, 99, 246));
  border: none;
  border-radius: 6px;
  color: var(--text-white);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  min-width: 100px;
  max-width: 100%;
  overflow: hidden;
  transition: all 0.5s ease-out;
  box-shadow: none;
}

/* 🌟 Hover effect – világosabb és lebeg kissé */
.gradient-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(96, 93, 255, 0.25);
}

/* Gradient Button #2 */
.gradient-button-normal {
  position: relative;
  background: linear-gradient(90deg, rgb(93, 168, 255), rgb(96, 93, 255) 50%, rgb(173, 99, 246));
  border: none;
  border-radius: 6px;
  color: var(--text-white);
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  min-width: 100px;
  max-width: 100%;
  overflow: hidden;
  transition: all 0.5s ease-out;
  box-shadow: none;
}

/* 🌟 Hover effect – világosabb és lebeg kissé */
.gradient-button-normal:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(96, 93, 255, 0.25);
}