.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.cta-button.primary {
  background: #e863a4;
  color: #fff;
}

.cta-button.primary:hover {
  background: #ff4ba3;
}

.cta-button.secondary {
  background: transparent;
  color: #dfff00;
  border: 2px solid #dfff00;
}

.cta-button.tertiary {
  background: #dfff00;
  color: #e863a4;
  border: 2px solid #dfff00;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary:hover {
  background: #dfff00;
  color: #0f0f0f;
}

.cta-button.tertiary:hover {
  background: #b6d203;
  border-color: #b6d203;
  color: #ff4ba3;
}

.cta-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cta-button:disabled:hover {
  background: inherit;
  color: inherit;
}
