.button {
  display: inline-block;
  padding: 12px 24px;
  color: #000; /* Fekete szöveg */
  background: #fff; /* Fehér gomb */
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2); /* Elmosódó fényhatás */
  text-decoration: none;
}

.button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.button:hover {
  color: #fff; /* Fehér szöveg */
  background: #000; /* Fekete gomb */
}

.button:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.button:active {
  transform: scale(0.95); /* Enyhe nyomódás hatás */
}
